I need a macro that will press the "1" key two times very fast.
I didn't understand the tut, so can someone simplify it

Code: Select all
#Defines the action that triggers the macro execution
MACRO 1
#Performs a keystroke (key down + delay 50ms + key up)
KEY 1
#Sleep 50ms
DELAY 50
#Perform a key down
KEYDOWN 1
KEYUP 1
Code: Select all
#Defines the action that triggers the macro execution
MACRO 1
KEY 2
DELAY 100
KEY 2