tags:

views:

34

answers:

1

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
any other way to do it?
joycollector
Nope, pretty much sure that's it. Any reason why that won't work?
Chris Tek
It was a long way to pass AppletContext to the actionListener...
joycollector