Moving the Cursor on the Screen : Robot « Development Class « Java






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

1.Simulate a key press
2.Simulate a mouse click
3.Create mouse event using Robot class
4.Capture a screenshot
5.Get the colour of a screen pixel
6.Capturing a Screen Shot
7.Capturing Screen in an image using Robot class
8.Create key press event using Robot class?
9.Use Robot to do mouse press
10.Using Robot to capture a screen shapshot
11.Use Robot to send combo key event