Tuesday, July 27, 2010

How to simulate mouse and key input

try {

Robot robot = new Robot();

// Simulate a mouse click

robot.mousePress(InputEvent.BUTTON1_MASK);

robot.mouseRelease(InputEvent.BUTTON1_MASK);

// Simulate a key press

robot.keyPress(KeyEvent.VK_A);

robot.keyRelease(KeyEvent.VK_A);

} catch (AWTException e) {

}

http://www.exampledepot.com/egs/java.awt/Simulate.html

No comments:

Post a Comment