Last active
December 23, 2015 14:39
-
-
Save usaturn/6650762 to your computer and use it in GitHub Desktop.
AutoHotKey用のクリックするだけスクリプト。
使い方は引数でスクリプトを指定、 AutoHotkey.exe click.txt Alt+Shift+c で発動します。
6億回ループしますが、Ctrlを押すと止まります。
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
| 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