Skip to content

Instantly share code, notes, and snippets.

@jimdiroffii
Created September 14, 2020 15:18
Show Gist options
  • Save jimdiroffii/f844b9d1726855f8b048c0e34ca0a553 to your computer and use it in GitHub Desktop.
Save jimdiroffii/f844b9d1726855f8b048c0e34ca0a553 to your computer and use it in GitHub Desktop.
Mouse Automation Example in AutoHotKey
^!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