Created
September 14, 2020 15:18
-
-
Save jimdiroffii/f844b9d1726855f8b048c0e34ca0a553 to your computer and use it in GitHub Desktop.
Mouse Automation Example in AutoHotKey
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
^!m:: | |
Loop 15 | |
{ | |
MouseMove, 766, 421 | |
click 766, 421 | |
Send 18{Enter} | |
MouseMove, 579, 75 | |
Click 579, 75 | |
MouseMove, 766, 421 | |
} | |
return | |
^+h:: | |
Loop 100000 | |
{ | |
sleep 100 | |
Send {Down} | |
sleep 100 | |
Send {Left} | |
sleep 100 | |
MouseMove, 766, 421 | |
MouseMove, 579, 75 | |
} | |
return |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment