Difference between revisions of "SetMousePos"

From SCAR Divi Manual
Jump to: navigation, search
(Created page with "==Definition== <func>procedure MoveMouse(x, y: Integer);</func> ==Availability== SCAR Divi 3.00 > Current ==Description== This function moves the cursor to a coordinate ('''x''...")
 
m
Line 1: Line 1:
 
==Definition==
 
==Definition==
<func>procedure MoveMouse(x, y: Integer);</func>
+
<source lang="scar" lines="false">
 +
procedure MoveMouse(x, y: Integer);
 +
</source>
  
 
==Availability==
 
==Availability==

Revision as of 01:15, 27 June 2011

Definition

procedure MoveMouse(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.

Example

begin
  MoveMouse(500, 500);
end.

See Also