Page 1 of 1

Moving the mouse?

Posted: Sep 6th, ’19, 18:27
by grover69
I guess I don't get it so I need some help. I've got the keyboard stuff working, but I don't understand how to move the mouse, either to an exact position or more importantly, how to move the mouse relatively. Any help here? I'm sure once I get started I will be fine. TIA everyone!!

Re: Moving the mouse?

Posted: Sep 6th, ’19, 19:41
by Marko
Use Type: Command or Insert command code macro.

Move the mouse to a new position:

Code: Select all

MouseMove, 200, 100
Move the mouse by 20 pixels to the right and 30 pixels down:

Code: Select all

MouseMove, 20, 30, 0, R

Re: Moving the mouse?

Posted: Sep 6th, ’19, 19:55
by grover69
Yes it works!! Great program by the way!!