Jump to content

HotKeySet for simple letter?


 Share

Recommended Posts

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 by Logty
Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...