Java Robot.mousePress(int buttons)
Syntax
Robot.mousePress(int buttons) has the following syntax.
public void mousePress(int buttons)
Example
In the following code shows how to use Robot.mousePress(int buttons) method.
/*w ww. j a va 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 );
}
}
Home »
Java Tutorial »
java.awt »
Java Tutorial »
java.awt »