Difference between revisions of "MoveMouseSmooth"
From SCAR Divi Manual
(Created page with "==Definition== <func>procedure MoveMouseSmooth(x, y: Integer);</func> ==Availability== SCAR Divi 3.00 > Current ==Description== This function moves the cursor to a coordinate (...") |
|||
Line 1: | Line 1: | ||
==Definition== | ==Definition== | ||
− | < | + | <source lang="scar" lines="false"> |
+ | procedure MoveMouseSmooth(x, y: Integer); | ||
+ | </source> | ||
==Availability== | ==Availability== |
Revision as of 18:48, 26 June 2011
Definition
procedure MoveMouseSmooth(x, y: Integer);
Availability
SCAR Divi 3.00 > Current
Description
This function moves the cursor to a coordinate (x, y) relative to the selected client window using a "humanlike" movement. For a far more humanlike mouse movement it's suggested to use the MoveWindMouse function.
Example
begin MoveMouseSmooth(600, 300); end.