Difference between revisions of "ClickMouseMid"

From SCAR Divi Manual
Jump to: navigation, search
Line 18: Line 18:
  
 
==See Also==
 
==See Also==
*[[ClickMouse]]
 
 
*[[HoldMouseMid]]
 
*[[HoldMouseMid]]
 
*[[ReleaseMouseMid]]
 
*[[ReleaseMouseMid]]
 +
*[[ClickMouse]]
 
*[[MoveMouse]]
 
*[[MoveMouse]]
  
 
[[Category:Functions]]
 
[[Category:Functions]]
 
[[Category:Mouse Functions]]
 
[[Category:Mouse Functions]]

Revision as of 17:08, 3 July 2011

Definition

procedure ClickMouseMid(x, y: Integer);

Availability

SCAR Divi 3.00 > Current

Description

Generates a mouse click at the specified coordinate (x, y) relative to the selected client window using the middle mouse button. In the event that the current cursor position does not equal that of the given coordinates, the function will call MoveMouse to set the cursor position to the given coordinate.

Example

begin
  ClickMouseMid(500, 500);
end.

See Also