Simulate input/Mouse

From Rosetta Code
Revision as of 20:10, 26 May 2009 by rosettacode>Tinku99 (mouse click)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Task
Simulate input/Mouse
You are encouraged to solve this task according to the task description, using any language you may know.

Simulate the click of a mouse button by the user.

AutoHotkey

<lang AutoHotkey> /* simulate a right mouse click 200 pixels right and down from the top left of the screen.

  • /

CoordMode, Mouse, Screen Click 200, 200 right </lang>