ResetAppletState Method
The ResetAppletState method sets the applet to an active state if this applet is not active. It uses the following syntax:
oldActiveApplet.ResetAppletState();
It includes no arguments.
To use the ResetAppletState method, you bind the physical renderer to the presentation model. The following example binds the physical renderer to the presentation model. You add this code to the physical renderer:
this.GetPM().AttachPMBinding("ResetAppletState", function(){
//Code that resets the applet
}
});