Skip to content

Instantly share code, notes, and snippets.

@Darker
Created June 26, 2016 10:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Darker/e63ce9e9ac94f218e9fd50111834c623 to your computer and use it in GitHub Desktop.
Save Darker/e63ce9e9ac94f218e9fd50111834c623 to your computer and use it in GitHub Desktop.
Auto hotkey - click left button once per second
toggle=0
F12::
If (toggle := !toggle)
SetTimer, Timer, -1
return
timer:
while toggle
{
Click
Sleep, 1000
}
return
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment