How programmatically to press the screen?

sergey7777777

New Member
How programmatically to press the screen in coordinates(X=100 Y=200) ?

In Windows API there is a decision:
SetCursorPos_(x,y)
mouse_event_(#MOUSEEVENTF_LEFTDOWN,0,0,0,0)

thanks for the answer :)
 

Cableguy

Expert
Licensed User
Longtime User
Explain exactly what you are trying to do...
Are you trying to trigger a click event of a view, or what is it?
The info you gave is too general to answer you
 

sergey7777777

New Member
I want to operate programmatically the cursor and to press in the coordinates necessary to me on the screen. Without participation of the user :)

For example 10 times to cause a click on the screen in different places
 
Top