Created
August 6, 2024 01:40
-
-
Save erbanku/8db14ab574fd07b2e8bdbfb0c0c217d0 to your computer and use it in GitHub Desktop.
autohotkey-auto-clicke
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
#MaxThreadsPerHotkey 3 | |
^z:: ; Ctrl+Z to toggle | |
Toggle := !Toggle | |
Loop | |
{ | |
If (!Toggle) | |
Break | |
Click | |
Sleep 50 ; Make this number higher for slower clicks, lower for faster. | |
} | |
Return |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It only works with AutoHotkey V1 for now.