orgo_click
Click at specified screen coordinates to interact with virtual computers. Use with screen capture to identify targets for automated control actions.
Instructions
Click at (x, y) coordinates on the screen.
Use orgo_screenshot first to see the screen and identify click targets.
Coordinates are in pixels from top-left corner.
Args:
params (ClickInput): Input containing:
- computer_id (str): Computer ID
- x (int): Horizontal position in pixels
- y (int): Vertical position in pixels
- button (Literal): 'left', 'right', or 'middle' (default: left)
Returns:
str: Confirmation of click action
Examples:
- "Click at (500, 300)" -> params with x=500, y=300
- "Right-click at 100, 200" -> params with x=100, y=200, button="right"
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| params | Yes |