Created
February 18, 2019 14:33
-
-
Save codeonion/088071c524b2e2f61f48fc95e4d02a1e to your computer and use it in GitHub Desktop.
Toggle the Windows Sticky Keys using this Autohotkey macro
This file contains hidden or 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
SearchString = Turn on easy access keys | |
^j:: | |
TrayTip, Sticky Keys Macro, Toggling Sticky Keys, 2,1 | |
Send, #u | |
Sleep, 1000 | |
Send, %SearchString% | |
Send, {Enter} | |
Sleep, 1000 | |
Send, {Enter} | |
Sleep, 1000 | |
Send, {Tab}{Tab}{Space} | |
loop 13{ | |
Send, {Tab} | |
} | |
Send, {Enter} | |
WinClose , Make the keyboard easier to use | |
Sleep, 200 | |
WinClose , Settings | |
TrayTip, Sticky Keys Macro, Sticky keys are toggled successfully, 2,1 | |
return |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment