Difference between revisions of "MoveMouse (Old)"

From SCAR Divi Manual
Jump to: navigation, search
(Created page with "==Definition== <source lang="scar" lines="false"> procedure MoveMouse(x, y: Integer); </source> ==Availability== SCAR Divi 3.00 > 3.34 ==Description== This function moves th...")
 
 
Line 23: Line 23:
 
*[[ClickMouse]]
 
*[[ClickMouse]]
  
[[Category:Functions]]
+
[[Category:Deprecated Functions]]
[[Category:Mouse Functions]]
 

Latest revision as of 14:50, 8 September 2012

Definition

procedure MoveMouse(x, y: Integer);

Availability

SCAR Divi 3.00 > 3.34

Description

This function moves the cursor to a coordinate (x, y) relative to the selected client window.

Example

begin
  MoveMouse(500, 500);
end.

See Also