Moving the Mouse - Three Monitors

Share your favorite FastKeys commands
Post Reply
raymm3852
Posts: 1
Joined: Apr 2nd, ’21, 20:43

Post by raymm3852 » Apr 2nd, ’21, 21:01

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?
User avatar
Tom
Posts: 791
Joined: Nov 24th, ’15, 23:39

Post by Tom » Apr 4th, ’21, 11:41

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.
Post Reply