Moving the Cursor on the Screen : Robot « Development Class « Java
- Java
- Development Class
- Robot
Moving the Cursor on the Screen
import java.awt.Robot;
public class Main {
public static void main(String[] argv) throws Exception {
Robot robot = new Robot();
robot.mouseMove(500, 500);
}
}
Related examples in the same category