Difference between revisions of "MoveMouseBox"

From SCAR Divi Manual
Jump to: navigation, search
(Created page with "==Definition== <source lang="scar" lines="false"> procedure MoveMouseBox(const Box: TBox); </source> ==Availability== SCAR Divi 3.35 > Current ==Description== Moves the mous...")
 
(Undo revision 1724 by Freddy (talk))
 
(2 intermediate revisions by the same user not shown)
Line 8: Line 8:
  
 
==Description==
 
==Description==
Moves the mouse to a random coordinate within the given [[TBox]] '''Box''', relative to the active client window's input area. An extended function with additional functionality is available as [[MoveMouseBoxEx]].
+
Moves the cursor to a random coordinate within the given [[TBox]] '''Box''', relative to the active client window's input area. An extended function with additional functionality is available as [[MoveMouseBoxEx]].
  
 
==Example==
 
==Example==

Latest revision as of 20:06, 8 September 2012

Definition

procedure MoveMouseBox(const Box: TBox);

Availability

SCAR Divi 3.35 > Current

Description

Moves the cursor to a random coordinate within the given TBox Box, relative to the active client window's input area. An extended function with additional functionality is available as MoveMouseBoxEx.

Example

begin
  MoveMouseBox(Box(100, 100, 500, 500));
end.

See Also