Page 1 of 1

Help with Macro

Posted: 02 Mar 2020, 01:10
by maniaclciks
Hi Guys, hope u can help me with this macro

i try to send a Right click to xxxx, xxxx position and then the mouse go back to xxxx,xxxx position and use left click


for example go to 1214,334 use right click, and moves to 590,294 but using left click. hope u can understand what i try to do, thanks!!

Re: Help with Macro

Posted: 02 Mar 2020, 13:26
by Rohwedder
Hallo,
try:

Code: Select all

CoordMode, Mouse, Screen
q::
Click, right, 1214, 334
Sleep, 1000
Click, 590, 294
Return