LeftMouseDown
void LeftMouseDown(string control)Description
Simulates pressing and holding the left mouse button over a specified control.
This does not release the button until a corresponding LeftMouseUp call is made.
Parameters
- control - Identifier of the UI control.
Returns
- none
Example
void main()
{
LeftMouseDown("SLIDER_HANDLE");
// ... move mouse while holding
LeftMouseUp("SLIDER_HANDLE");
}