Mouse Click helps you to click mouse automatically on computer screen. Automate single or double clicks for left button or right button on mouse. Use Mouse Click in a batch file specifying mouse click command line parameters.
The Software can be used from command line or from script by specifying co-ordinates, type of mouse click to automate, etc.
Parameters :
- X = Value of X Co-Ordinate on Screen.
- Y = Value of Y Co-Ordinate on Screen.
- Click Type = 0 for Left Click, 1 for Right Click, 2 for Left button double click, 3 for Right Button double click.
- Cursor Back = 0 would say do not move cursor back to original position and 1 would say move cursor back to original location.
Example 1 -> MouseClick 0,0,0,0 : This would simulate a Left Button Click on extreme left corner of the screen and would not move mouse cursor back to original location.
Example 2 -> MouseClick 1,0,0,1 : This would simulate a Right Button Click on extreme left corner of the screen and would move mouse cursor back to original location.
Comments (1)
(only the order in the description is not correct it should be
click type, X,Y,cursorback )
Works on win7 and windows server 2012
I used it on a server where a programm sometimes stopped and you had to click to continue. Saves a lot of trouble! thanks.