Jump to content
Xtreme .Net Talk

Recommended Posts

Posted

How can I move the mouse using code. Say I click Command1, the mouse would move a certain number of units.

 

Where can I find a tutorial on how to do this?

  • Leaders
Posted

Found this solution on Google. You can set the cursor's position using the Cursor class' Position property. For example, this function would move the mouse:

[color="Blue"]void[/color] MoveMouse([color="Blue"]int [/color]x, [color="Blue"]int [/color]y) {
   Cursor.Position = [color="Blue"]new [/color]Point(Cursor.Position.X + x, Cursor.Position.Y + y);
}

[sIGPIC]e[/sIGPIC]

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...