Indira, Here is an illustration... Appletfirst called by browser ---------------- init() -------------------------------------------- start() Browser leaves Applet's page ------------------ stop() Browser returns to Applet's page -------------- start() Browser leaves Applet's page ------------------ stop() Browser exits --------------------------------- destroy() Start() and Stop() are for when the browser enters and exits the page. Init() and Destroy() are constructor and destructor. One major use I have seen for Start() and Stop() are for controlling threads that the applet uses... you don't want multiple threads taking up memory in the background of the browser... HTH, -Nate [This message has been edited by Nathan Pruett (edited March 13, 2001).]
-Nate
Write once, run anywhere, because there's nowhere to hide! - /. A.C.
subject: Significance of Start() and Stop() methods