Skip to content

Instantly share code, notes, and snippets.

@kevinfiol
Created January 22, 2021 15:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kevinfiol/e7a915a3ed6f1f3e6d5f745633b61617 to your computer and use it in GitHub Desktop.
Save kevinfiol/e7a915a3ed6f1f3e6d5f745633b61617 to your computer and use it in GitHub Desktop.
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