From one applet, how do I communicate with another applet loaded from the same server?
Created May 4, 2012
If you include a name="appletA" value in the applet tag of the applet
you want to call methods on, you get a reference to it by using the AppletContext:
MyApplet appl = (MyApplet) getAppletContext().getApplet("appletA");
if (null != appl) {
appl.register("Hello there!", this);
}