MoveMouseEx

From SCAR Divi Manual
Revision as of 14:44, 8 September 2012 by Freddy (talk | contribs) (Created page with "==Definition== <source lang="scar" lines="false"> procedure MoveMouseEx(const X, Y, MouseSpeed: Integer); </source> ==Availability== SCAR Divi 3.35 > Current ==Description==...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

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