Core Function MouseDown
From Sputnik Wiki
(Difference between revisions)
(Created page with "<pre> MouseDown ( <button> ) </pre> === Description === Perform a mouse down event at the current mouse position. === Parameters === ==== button ==== The button to click: "l...") |
m (1 revision) |
(One intermediate revision by one user not shown) |
Latest revision as of 12:38, 14 June 2015
MouseDown ( <button> )
Contents |
Description
Perform a mouse down event at the current mouse position.
Parameters
button
The button to click: "left", "right", "middle", "main", "menu", "primary", "secondary".
Return Value
None
Remarks
Use responsibly: For every MouseDown there should eventually be a corresponding MouseUp event.
Example
MouseDown("left"); Sleep(100); MouseUp("left");