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
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