Skip to content

Instantly share code, notes, and snippets.

@usaturn
Last active December 23, 2015 14:39
Show Gist options
  • Select an option

  • Save usaturn/6650762 to your computer and use it in GitHub Desktop.

Select an option

Save usaturn/6650762 to your computer and use it in GitHub Desktop.
AutoHotKey用のクリックするだけスクリプト。 使い方は引数でスクリプトを指定、 AutoHotkey.exe click.txt Alt+Shift+c で発動します。 6億回ループしますが、Ctrlを押すと止まります。
ClickClick:
Loop, 600000000
{
MouseClick, left
Sleep, 10
GetKeyState ctrlon, Ctrl
if ctrlon = D
Break
}
return
+!::Goto,ClickClick
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment