Created
November 7, 2015 22:24
-
-
Save heolin/9d335e32eb5a6166a08d to your computer and use it in GitHub Desktop.
Press LeftWindows + a to toggle autopressing left mouse button
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
| ; Press LeftWindows + a to toggle autopressing left mouse button | |
| toggle=0 | |
| LWIN & a:: | |
| if (toggle := !toggle) | |
| SetTimer, timer, -1 | |
| return | |
| timer: | |
| while toggle | |
| Click | |
| return |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment