Created
January 22, 2021 15:57
-
-
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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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