14 lines
209 B
AutoHotkey
14 lines
209 B
AutoHotkey
;; #=Win ^=Ctrl +=Shift !=Alt
|
|
;; F13-F20 are bound to macro keys on mouse
|
|
|
|
F13::
|
|
Send, !f ;; Alt+F to file a blood report
|
|
Return
|
|
|
|
F14::
|
|
Send, !o ;; Alt+O to press okay
|
|
Return
|
|
|
|
F19::
|
|
Send !h ;; Alt+H
|
|
Return |