

Hi,
Here is the answer.
Name your applets inside the Applet tag and invoke AppletContextâ??s getApplet() method in your applet code to obtain references to the other applets on the page.
The code is as follows.
AppletContext context = getAppletContext(); ClassName oapplet =(ClassName)context.getApple(AppletName);
Thanks.