views:

18

answers:

1

Hello there, I have a scenario wherein one applet has to trigger the invocation of another applet. Please suggest me how I go about it.

Sanjeev Gopinath V

A: 

Taken from this link - Hope this will help you -

you can call another applet using

getAppletContext().showDocument(URL, "_blank")  

where URL is the HTML page containing the second applet. That will open a new window.

Sachin Shanbhag