Core Function MouseUp
From Sputnik Wiki
(Difference between revisions)
(Created page with "<pre> MouseUp ( <button> ) </pre> === Description === Perform a mouse up event at the current mouse position. === Parameters === ==== button ==== The button to click: "left"...") |
m (1 revision) |
||
(2 intermediate revisions by one user not shown) | |||
Line 12: | Line 12: | ||
The button to click: "left", "right", "middle", "main", "menu", "primary", "secondary". | The button to click: "left", "right", "middle", "main", "menu", "primary", "secondary". | ||
− | |||
− | |||
=== Return Value === | === Return Value === |
Latest revision as of 12:38, 14 June 2015
MouseUp ( <button> )
Contents |
Description
Perform a mouse up 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");