Icy Posted March 9, 2011 Posted March 9, 2011 Hi, I would like to use function "HotKeySet" for some letter: for example "X". Can you help me how?
Logty Posted March 9, 2011 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
Icy Posted March 9, 2011 Author Posted March 9, 2011 ty. it works... idk why it didnt work to me before xD
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