Skip to content

Instantly share code, notes, and snippets.

@kevinfiol
Created January 22, 2021 15:57
AutoHotkey script to fake input of non-existent F keys. Useful for binding mouse buttons to non-existent keys with mouse software
F1::
tooltip, preparing to fire...
Sleep, 1000
Send {F13}
sleep 10
tooltip, BOOM!
sleep 100
tooltip,
Return
F2::
tooltip, preparing to fire...
Sleep, 1000
Send {F14}
sleep 10
tooltip, BOOM!
sleep 100
tooltip,
Return
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment