Difference between revisions of "MoveMouseBoxEx"
From SCAR Divi Manual
(Created page with "==Definition== <source lang="scar" lines="false"> procedure MoveMouseBoxEx(const Box: TBox; const MouseSpeed: Integer); </source> ==Availability== SCAR Divi 3.35 > Current =...") |
(No difference)
|
Latest revision as of 19:06, 8 September 2012
Definition
procedure MoveMouseBoxEx(const Box: TBox; const MouseSpeed: Integer);
Availability
SCAR Divi 3.35 > Current
Description
Moves the cursor to a random coordinate within the given TBox Box, relative to the active client window's input area. The given MouseSpeed determines the how fast the cursor moves, a higher value means it will move faster. The default speed in MoveMouseBox is 20.
Example
begin MoveMouseBoxEx(Box(100, 100, 500, 500), 15); end.