I have to open a page from class extended from javax.swing.AbstractAction class... Is that possible?
+1
A:
Yes, it is possible.
getAppletContext().showDocument(url,"_blank");
The interface AppletContext has the method
Chris Tek
2009-08-26 12:03:16
any other way to do it?
joycollector
2009-08-26 12:17:16
Nope, pretty much sure that's it. Any reason why that won't work?
Chris Tek
2009-08-26 14:23:57
It was a long way to pass AppletContext to the actionListener...
joycollector
2009-08-29 10:53:39