Created
October 22, 2012 04:06
-
-
Save KhalidFawzy/3929582 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;Autohotkey_L U32 | |
;Keyboard to joystick test | |
#InstallKeybdHook | |
#UseHook | |
Gui, Show, Center h100 w200, | |
Return | |
GuiEscape: | |
GuiClose: | |
ExitApp | |
$joy1:: | |
SendInput s | |
return | |
$1:: | |
SendInput {joy1 down} | |
keywait 1 | |
SendInput (joy1 up} | |
return | |
$2:: | |
SendInput {joy1} | |
return |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment