Difference between revisions of "MoveWindMouse"

From SCAR Divi Manual
Jump to: navigation, search
(Created page with "==Definition== <source lang="scar" lines="false"> procedure MoveWindMouse(x, y, rx, ry: Integer); </source> ==Availability== SCAR Divi 3.21 > Current ==Description== This funct...")
 
 
(One intermediate revision by the same user not shown)
Line 5: Line 5:
  
 
==Availability==
 
==Availability==
SCAR Divi 3.21 > Current
+
SCAR Divi 3.21 > 3.34
  
 
==Description==
 
==Description==
Line 19: Line 19:
 
==See Also==
 
==See Also==
 
*[[MoveWindMouseEx]]
 
*[[MoveWindMouseEx]]
 +
*[[MouseBox]]
 
*[[ClickWindMouse]]
 
*[[ClickWindMouse]]
 
*[[MoveMouseSmooth]]
 
*[[MoveMouseSmooth]]
 
*[[MoveMouse]]
 
*[[MoveMouse]]
  
[[Category:Functions]]
+
[[Category:Deprecated Functions]]
[[Category:Mouse Functions]]
 

Latest revision as of 13:35, 8 September 2012

Definition

procedure MoveWindMouse(x, y, rx, ry: Integer);

Availability

SCAR Divi 3.21 > 3.34

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. An extended function with additional functionality is available as MoveWindMouseEx.

Example

begin
  MoveWindMouse(500, 500, 100, 100);
end.

See Also