JAVA-MANI.BLOGSPOT.COM
Thursday, October 2, 2008
In this example we are automating the process of creating mouse event using the java.awt.Robot class.


import java.awt.AWTException;
import java.awt.Robot;
import java.awt.event.InputEvent;

public class MovingMouseDemo {
public static void main(String[] args) {
try {
Robot robot = new Robot();

//
// Move mouse cursor to 200, 200
//
robot.mouseMove(200, 200);

//
// Press the mouse button #1.
//
robot.mousePress(InputEvent.BUTTON1_MASK);
robot.mouseRelease(InputEvent.BUTTON1_MASK);

//
// Scroll the screen up for a mouse with a wheel support.
//
robot.mouseWheel(-100);
} catch (AWTException e) {
e.printStackTrace();
}
}
}

0 comments:

SUBSCRIBE VIA eMAIL

Enter your email address:

Delivered by FeedBurner

Recent Posts

Firefox 3

Counter

internet companies

Live Traffic Map

Subscribe Now