Difference between revisions of "MoveMouseEx"

From SCAR Divi Manual
Jump to: navigation, search
(Created page with "==Definition== <source lang="scar" lines="false"> procedure MoveMouseEx(const X, Y, MouseSpeed: Integer); </source> ==Availability== SCAR Divi 3.35 > Current ==Description==...")
 
(No difference)

Latest revision as of 14:44, 8 September 2012

Definition

procedure MoveMouseEx(const X, Y, MouseSpeed: Integer);

Availability

SCAR Divi 3.35 > Current

Description

Moves the cursor to the given coordinate (X, Y) in a smooth human-like fashion. The given MouseSpeed determines the how fast the cursor moves, a higher value means it will move faster. The default speed in MoveMouse is 20. An extended function with additional functionality is available as MoveMouseExpert.

Example

begin
  MoveMouse(1000, 1000);
end.

See Also