Robot.mousePress(int buttons) has the following syntax.
public void mousePress(int buttons)
In the following code shows how to use Robot.mousePress(int buttons) method.
/* w w w. jav a 2s. c o m*/ import java.awt.Robot; import java.awt.event.InputEvent; public class Main { public static void main(String[] args) throws Exception{ Robot r = new Robot(); r.mouseMove(35,35); r.mousePress( InputEvent.BUTTON1_MASK ); r.mouseRelease( InputEvent.BUTTON1_MASK ); Thread.sleep(50); r.mousePress( InputEvent.BUTTON1_MASK ); r.mouseRelease( InputEvent.BUTTON1_MASK ); } }