LeftMouseUp
void LeftMouseUp(string control)Description
Simulates releasing the left mouse button on a specified control.
Use together with LeftMouseDown for drag-and-drop or slider operations.
Parameters
- control - Identifier of the UI control.
Returns
- none
Example
void main()
{
LeftMouseDown("LIST_ITEM");
// ... perform drag
LeftMouseUp("LIST_TARGET");
}