Icy Posted March 9, 2011 Share Posted March 9, 2011 Hi, I would like to use function "HotKeySet" for some letter: for example "X". Can you help me how? Link to comment Share on other sites More sharing options...
Logty Posted March 9, 2011 Share Posted March 9, 2011 (edited) Here is how you do it, it is fairly simple: HotKeySet( "x", "k" ) While 1 Sleep( 10 ) WEnd Func k() Exit EndFunc What it does is it goes through the script until x is pressed and then it goes to function k(). If you want to use special keys like escape then you have to type something like: HotKeySet( "{esc}", "k" ) While 1 Sleep( 10 ) WEnd Func k() Exit EndFunc Edited March 9, 2011 by Logty Link to comment Share on other sites More sharing options...
Icy Posted March 9, 2011 Author Share Posted March 9, 2011 ty. it works... idk why it didnt work to me before xD Link to comment Share on other sites More sharing options...
Icy Posted March 9, 2011 Author Share Posted March 9, 2011 cuz I wrote big X instead of small x... Link to comment Share on other sites More sharing options...
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