Jump to content

Hotkeys :O


Recommended Posts

not just like togglepause

This implys to me that you have already read the help.

HotKeySet can be used to bind most any key to any function. Here is an example.

Hotkeyset("a", "RandomFunc") ; Binds hotkey "a" to a function titled "RandomFunc"

While 1;       \
    Sleep(100);-Give the script something to do while it waits for a hotkey
Wend;          /

Func RandomFunc() ; declares the "RandomFunc" function
     ;Whatever you want to do when hotkey is pressed goes here:
     Msgbox(0,"Hello","Hello from your function!!!"&@CRLF&'You Just Pressed "'&@Hotkeypressed&'"')
EndFunc
Edited by Paulie
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...