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 |
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
Title1 = Simple Title Animation | |
Title2 = Created by: Khalid Fawzy | |
SetTimer, AnimateTitle, 100 | |
Gui +AlwaysOnTop | |
Gui +HWndGUI_ID | |
Gui, Show, Center h100 w400, . | |
Return |
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
;############################################################################ | |
;06/10/2012 | |
;Ultimate KeyBinder v1.0 | |
;Author: Khalid Fawzy | |
;E-Mail: [email protected] | |
;Created using: AutoHotKey_L Unicode 32. | |
;i would like to thank jaco0646 for his exellent topic about working with hotkeys located here: | |
;http://www.autohotkey.com/board/topic/47439-user-defined-dynamic-hotkeys/ | |
;as a beginner it saved a lot of time for me. | |
;############################################################################ |