Absolute click
Absolute clicks tap exact screen coordinates (X and Y). They are very fast and reliable for static UI elements that never change position.
Coordinate Selection
- Pick Location: Type X/Y values manually or tap the Pick Location on Screen button to use the visual crosshair overlay.
- Preview Location: Tap the
icon to instantly preview the tap and verify accuracy.
- Simultaneous Clicks: Tap + Add Simultaneous Click Location to add more points. All points execute at the exact same time (max 10 points).
The X Position and Y Position fields don't have to hold plain numbers. Use the beside them to drop in a variable, a detection result, or a value like %screen.centerX% that is worked out while the macro runs.
Task Timing & Randomization
- Hold Duration (ms): How long the finger stays pressed down. Increase to simulate a long press.
- Repeat Count: How many times this exact tap should be sequentially repeated.
- Delay Before / Post Wait (ms): Injects custom pause times (in milliseconds) immediately before or after the click occurs.
- Randomize Position (±px): Scatters the tap within this many pixels of the target so it doesn't land on the identical spot every time.
Note: Because absolute coordinates depend on exact screen pixels, they vary across devices. Use to make them device-independent.
Code Equivalent
click(540, 960, { duration: 200, repeat: 3, waitBefore: 500, waitAfter: 300, radius: 5 });
multi.click([{ x: 100, y: 200 }, { x: 300, y: 400 }], { duration: 150, repeat: 2, radius: 3 });