I have this code:
Robot mov = null;
try {
mov = new Robot();
} catch (AWTException e1) {
e1.printStackTrace();
}
if(movedy!=0&&movedx!=0) {
mov.mouseMove(300, 300);
}
And on my PC, IT never moves the mouse to the correct location. Interestingly though, it works on my Mac. Any help would be appreciated