Is there a activity to save screen mouse position?

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,