Is it possible to launch an applet when I click component in another applet

Hi,I have a big applet. I need to display another applet when I double click over a JButton. Is this possible? how?
[129 byte] By [kandua] at [2007-11-27 9:47:05]
# 1

> Hi,

>

> I have a big applet. I need to display another applet

> when I double click over a JButton. Is this possible?

> how?

An applet cannot live allone. You must show a new Web page containing the applet:

getAppletContext().showDocument(URL url, String target)

Andre_Uhresa at 2007-7-12 23:58:45 > top of Java-index,Desktop,Core GUI APIs...
# 2
Thanks!
kandua at 2007-7-12 23:58:45 > top of Java-index,Desktop,Core GUI APIs...