Pages

Wednesday, December 2, 2009

import java.awt.AWTException;
import java.awt.Robot;
import java.awt.event.InputEvent;
public class MouseClick {
public static void main(String[] args) throws AWTException {
Robot robot = new Robot();
for (int i = 0; i <>
robot.delay(5);
robot.mousePress(InputEvent.BUTTON1_MASK);
robot.mouseRelease(InputEvent.BUTTON1_MASK);
}
}
}


by this code I got 2120 clicks in 30 seconds in ClickFan application on facebook :D
I can't do more because the counter in the application starts again from zero when the speed is very high ...the first comment was from mohammad abd el aziz: "tab ezay ??"


No comments:

Post a Comment