Moving the mouse?

Discussion, questions and support.
Post Reply
grover69
Posts: 4
Joined: Nov 7th, ’18, 00:01

Post by grover69 » Sep 6th, ’19, 18:27

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!!
User avatar
Marko
Posts: 1718
Joined: Mar 2nd, ’13, 21:02

Post by Marko » Sep 6th, ’19, 19:41

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
grover69
Posts: 4
Joined: Nov 7th, ’18, 00:01

Post by grover69 » Sep 6th, ’19, 19:55

Yes it works!! Great program by the way!!
Post Reply