Difference between revisions of "MoveWindMouseEx"

From SCAR Divi Manual
Jump to: navigation, search
(Created page with "==Definition== <source lang="scar" lines="false"> procedure MoveWindMouseEx(x, y, rx, ry, MouseSpeed: Integer); </source> ==Availability== SCAR Divi 3.21 > Current ==Descriptio...")
 
(See Also)
Line 19: Line 19:
 
==See Also==
 
==See Also==
 
*[[MoveWindMouse]]
 
*[[MoveWindMouse]]
 +
*[[MouseBox]]
 
*[[ClickWindMouse]]
 
*[[ClickWindMouse]]
 
*[[MoveMouseSmooth]]
 
*[[MoveMouseSmooth]]

Revision as of 10:50, 6 July 2011

Definition

procedure MoveWindMouseEx(x, y, rx, ry, MouseSpeed: Integer);

Availability

SCAR Divi 3.21 > Current

Description

This function moves the cursor in a "human-like" pattern to a coordinate (x, y) relative to the selected client window randomized within a range specified for each coordinate by rx and ry. MouseSpeed determines the mouse speed, by default 15 is used, higher values makes the cursor move faster.

Example

begin
  MoveWindMouseEx(500, 500, 100, 100, 10);
end.

See Also