nonplayablecharacter Posted August 16, 2008 Posted August 16, 2008 (edited) yes i know there is the block input but i only need a few keys blocked...is there some code i missed that does this? Also i was wonder how to send this character ----> " <----also known as quotes Edited August 16, 2008 by nonplayablecharacter You can always count on me for the dumb questions ;)My Scripts:Rikku
martin Posted August 16, 2008 Posted August 16, 2008 yes i know there is the block input but i only need a few keys blocked...is there some code i missed that does this? Also i was wonder how to send this character ----> " <----also known as quotesHotKeySet("{ESC}","Out") $BlockList = "AutoIt";we will block each of these letters for $n = 1 to StringLen($BlockList) HotKeySet(StringMid($BlockList,$n,1),"BlockIt") Next while 1 sleep(99) WEnd Func BlockIt() ;do nothing EndFunc Func out() Exit EndFunc ;################### ;send quotation marks Send('"') ;################# Serial port communications UDF Includes functions for binary transmission and reception.printing UDF Useful for graphs, forms, labels, reports etc.Add User Call Tips to SciTE for functions in UDFs not included with AutoIt and for your own scripts.Functions with parameters in OnEvent mode and for Hot Keys One function replaces GuiSetOnEvent, GuiCtrlSetOnEvent and HotKeySet.UDF IsConnected2 for notification of status of connected state of many urls or IPs, without slowing the script.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now