126127128129130131132133134135136
protected JButton executeInEDT() throws Throwable { return sf.getRootPane().getDefaultButton(); } }); // and move the mouse to it robot.moveMouse(defaultButton); robot.waitForIdle(); // wait for a second Pause.pause(1000);
151152153154155156157158159160161
} }); robot.waitForIdle(); // move the mouse away from the frame robot.moveMouse(new Point(0, 0)); robot.waitForIdle(); // wait for two seconds Pause.pause(1000);
133134135136137138139140141142143
158159160161162163164165166167168