Andy
unread,Jun 3, 2008, 4:31:22 PM6/3/08Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to aurorarnm
Hi Alex,
I can open the simulator/configurator by reconstructing the library
list. However, I couldn't run (i.e. open a file) a simulation without
disabling the following lines (rows 420 - 438 in MainPane.java). It
appears that there is some problem in compiling the class "desktop".
Same problem happened to me before. Would it be a "bug"? Please check.
Thanks.
if (cmdHelpAbout.equals(cmd)) {
new WindowAbout("Simulator", this);
return;
}
if (cmdHelpContactTOPL.equals(cmd)) {
Desktop desktop = null;
String email = AuroraConstants.CONTACT_EMAIL;
if (Desktop.isDesktopSupported()) {
desktop = Desktop.getDesktop();
if (desktop.isSupported(Desktop.Action.MAIL))
try {
desktop.mail(new URI("mailto", email, null));
return;
}
catch(Exception exp) { }
}
JOptionPane.showMessageDialog(this, "Cannot launch email client...
\n Please, email your questions to\n" + email , "",
JOptionPane.INFORMATION_MESSAGE);
return;
}