Skip to content

Instantly share code, notes, and snippets.

;Autohotkey_L U32
;Keyboard to joystick test
#InstallKeybdHook
#UseHook
Gui, Show, Center h100 w200,
Return
GuiEscape:
GuiClose:
ExitApp
@KhalidFawzy
KhalidFawzy / AutoHotKey Simple Title Animation
Created October 23, 2012 08:21
Little script to animate gui title in AutoHotKey
Title1 = Simple Title Animation
Title2 = Created by: Khalid Fawzy
SetTimer, AnimateTitle, 100
Gui +AlwaysOnTop
Gui +HWndGUI_ID
Gui, Show, Center h100 w400, .
Return
@KhalidFawzy
KhalidFawzy / Ultimate KeyBinder
Created November 17, 2012 09:48
This is a keyboard and mouse key mapper created with AutoHotKey_L unicode 32, and has a limited support for Joystick mapping.
;############################################################################
;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.
;############################################################################