Difference between revisions of "MoveMouse"
From SCAR Divi Manual
(Created page with "==Definition== <source lang="scar" lines="false"> procedure MoveMouse(const X, Y: Integer); </source> ==Availability== SCAR Divi 3.35 > Current ==Description== Moves the cur...") |
(No difference)
|
Latest revision as of 13:42, 8 September 2012
Definition
procedure MoveMouse(const X, Y: Integer);
Availability
SCAR Divi 3.35 > Current
Description
Moves the cursor to the given coordinate (X, Y) in a smooth human-like fashion. An extended function with additional functionality is available as MoveMouseEx.
Example
begin MoveMouse(1000, 1000); end.