Is there a activity to save screen mouse position?

without using click image, click

i want to save the mouse position that is The last place
and Call it up when it is done

If i use a click image in a repeated icon, it will click the icon that has been processed.

so i want to use the save the mouse position
and Call it up and move the same distance and click

Is there a activity to save screen mouse position?

Hi @sssim4567

did you try with the get position activity?

Regards!

Since the program I use is in the form of a spreadsheet, the whole is activated and I cannot select the desired point.

HI,

Do you need coordinate value of mouse pointer? If so, can you try the following expression?

Get position of mouse pointer

 System.Windows.Forms.Cursor.Position.X
 System.Windows.Forms.Cursor.Position.Y

Set position (move to the point 0,0 for example)

System.Windows.Forms.Cursor.Position = new System.Drawing.Point(0, 0)

image

Regards,