Difference between revisions of "MoveMouseSmooth"

From SCAR Divi Manual
Jump to: navigation, search
(Created page with "==Definition== <func>procedure MoveMouseSmooth(x, y: Integer);</func> ==Availability== SCAR Divi 3.00 > Current ==Description== This function moves the cursor to a coordinate (...")
 
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
==Definition==
 
==Definition==
<func>procedure MoveMouseSmooth(x, y: Integer);</func>
+
<source lang="scar" lines="false">
 +
procedure MoveMouseSmooth(const X, Y: Integer);
 +
</source>
  
 
==Availability==
 
==Availability==
SCAR Divi 3.00 > Current
+
SCAR Divi 3.00 > 3.34
  
 
==Description==
 
==Description==
This function moves the cursor to a coordinate ('''x''', '''y''') relative to the selected client window using a "humanlike" movement. For a far more humanlike mouse movement it's suggested to use the [[MoveWindMouse]] function.
+
This function moves the cursor to a coordinate ('''X''', '''Y''') relative to the selected client window using a "humanlike" movement. For a far more humanlike mouse movement it's suggested to use the [[MoveWindMouse]] function.
  
 
==Example==
 
==Example==
Line 20: Line 22:
 
*[[MoveWindMouse]]
 
*[[MoveWindMouse]]
  
[[Category:Functions]]
+
[[Category:Deprecated Functions]]
[[Category:Mouse Functions]]
 

Latest revision as of 13:04, 8 September 2012

Definition

procedure MoveMouseSmooth(const 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 using a "humanlike" movement. For a far more humanlike mouse movement it's suggested to use the MoveWindMouse function.

Example

begin
  MoveMouseSmooth(600, 300);
end.

See Also