autohotkey scripts code example
Example 1: autohotkey hotkeys
#^!s:: ;This occurs when pressed Windows Button+Control+Alt+s
Send Sincerely,{enter}John Smith ; This line sends keystrokes to the active (foremost) window.
return
Example 2: cool autohotkey
; Custom volume buttons
+NumpadAdd:: Send {Volume_Up} ;shift + numpad plus
+NumpadSub:: Send {Volume_Down} ;shift + numpad minus
break::Send {Volume_Mute} ; Break key mutes
return