How do I load a serialized applet?
Created May 4, 2012
John Zukowski Instead of specifying the CODE attribute of an <APPLET> tag, you use the OBJECT attribute, as in:
<APPLET OBJECT=TheApplet.ser WIDTH=300 HEIGHT=300 > </APPLET>
This allows you to preinitialize your applet to some saved state, instead of having to reinitialize your applet each time it is loaded.
Support for this in browsers is severly limited. Don't rely on it.