Page 1 of 1

Moving the Mouse - Three Monitors

Posted: Apr 2nd, ’21, 21:01
by raymm3852
I must be misunderstanding something.

I press F12 and record the below macro.

Command with:
MouseMove, -1093, 178
Send, {VK01 down}{VK01 up}

I run it and the cursor doesn't go to above location, it goes to the left edge of the left monitor.

Do I need to add something to tell the software which monitor?

Re: Moving the Mouse - Three Monitors

Posted: Apr 4th, ’21, 11:41
by Tom
MouseMove command has issues in certain multi-monitor configurations. Try changing it with

Code: Select all

DllCall("SetCursorPos", int, -1093, int, 178)
The first number is the X-coordinate and the second is the Y-coordinate.