Give mouse actions a coordinate.

Share your favorite FastKeys commands
Post Reply
Thrizian
Posts: 1
Joined: Sep 13th, ’17, 17:43

Post by Thrizian » May 25th, ’14, 20:39

Is there a way to make mouse clicks execute at a certain position on the screen?
User avatar
Marko
Posts: 1718
Joined: Mar 2nd, ’13, 21:02

Post by Marko » Dec 12th, ’16, 07:25

There are many ways to do this, like:

Command: Send

Code: Select all

{Click 200, 200}
Command: Command 
Code: Select all
Click 200, 200
or

Code: Select all

MouseMove, 200, 200
Click
Change 200, 200 to X, Y screen coordinates.

Many more options can be found in the AutoHotkey documentation. http://www.autohotkey.com/docs/commands/Click.htm

It is also possible to move and click mouse at relative window positions etc.
Post Reply