-
wikipedian committed revision 1980 to the Jacareto SVN repository, changing 1 files.
2009-12-09 16:05:20 UTC in Jacareto
-
MouseEventReplayer fixed in SVN.
2009-12-09 16:04:12 UTC in Jacareto
-
One problem is that MouseEventReplayer tries to find the source component even if it's not going to replay anything.
For example, in real mouse mode, MOUSE_EXITED events aren't replayed at all. The replayer tries to find the source component anyway.
2009-12-09 15:59:18 UTC in Jacareto
-
Correction: the action event is not a problem, because obviously there is no action event. The "component not found" exceptions are caused by:
* Mouse clicked
* Mouse exited
The replayer tries to replay these events after the dialog has already been closed by the Mouse released event.
2009-12-09 15:56:02 UTC in Jacareto
-
wikipedian committed revision 1979 to the Jacareto SVN repository, changing 4 files.
2009-12-09 15:49:07 UTC in Jacareto
-
The example class has been renamed to jacareto.examples.Bug1843640
Use the starter file starters/bugexamples.xml to test this example class.
2009-12-09 15:48:27 UTC in Jacareto
-
Consider this very simple button which makes the window invisible:
JButton button = new JButton("make window invisible");
button.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
frame.setVisible(false);
}
});
frame.add(button);
When capturing, Jacareto records a click on a...
2009-12-09 15:45:06 UTC in Jacareto
-
wikipedian committed revision 1978 to the Jacareto SVN repository, changing 4 files.
2009-12-09 15:39:46 UTC in Jacareto
-
wikipedian committed revision 1977 to the Jacareto SVN repository, changing 1 files.
2009-12-09 15:37:45 UTC in Jacareto
-
wikipedian committed revision 1975 to the Jacareto SVN repository, changing 1 files.
2009-12-08 17:28:59 UTC in Jacareto