MoveWindMouse

From SCAR Divi Manual
Revision as of 20:50, 5 July 2011 by Freddy (talk | contribs) (Created page with "==Definition== <source lang="scar" lines="false"> procedure MoveWindMouse(x, y, rx, ry: Integer); </source> ==Availability== SCAR Divi 3.21 > Current ==Description== This funct...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Definition

procedure MoveWindMouse(x, y, rx, ry: Integer);

Availability

SCAR Divi 3.21 > Current

Description

This function moves the cursor in a "human-like" pattern to a coordinate (x, y) relative to the selected client window randomized within a range specified for each coordinate by rx and ry. An extended function with additional functionality is available as MoveWindMouseEx.

Example

begin
  MoveWindMouse(500, 500, 100, 100);
end.

See Also