Using autohotkey with a gamepad
- by Phenom
I can map buttons on a gamepad like this:
Joy2::
Send {Up down} ; Hold down the left-arrow key.
KeyWait Joy2 ; Wait for the user to release the joystick button.
Send {Up up} ; Release the left-arrow key.
return
However I want to remap the directional pad to do the same thing instead. How can I do this?