Skip to content

Instantly share code, notes, and snippets.

@erbanku
Created August 6, 2024 01:40
Show Gist options
  • Save erbanku/8db14ab574fd07b2e8bdbfb0c0c217d0 to your computer and use it in GitHub Desktop.
Save erbanku/8db14ab574fd07b2e8bdbfb0c0c217d0 to your computer and use it in GitHub Desktop.
autohotkey-auto-clicke
#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
@erbanku
Copy link
Author

erbanku commented Aug 6, 2024

It only works with AutoHotkey V1 for now.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment