User`s manual

Creating Web Pages
4
83
Using Netscape Navigator
Netscape Navigator supports uncompressed standard ZIP files.
WebView Livescope provides the LiveApplet.zip, Glimpse.zip and PanoramaSnap.zip
files in the folder used for applet installation. These files should be coded inside the
applet tags and specified as zip files using the archive attribute.
<applet archive="LiveApplet.zip" code="LiveApplet.class" width=450
height=380>
</applet>
Navigator 4.x also supports compressed ZIP files, but uncompressed ZIP files should
still be used so that the applet will run on earlier versions (3.x).
Providing compatibility with Internet Explorer and Netscape Navigator
To ensure that the maximum possible number of clients can view the video images, the
applet tags should be coded so as to be compatible with both the mainstream browsers.
<applet archive="LiveApplet.zip" code="LiveApplet.class" width=
450 height=380>
<param name="cabbase" value="LiveApplet.cab">
</applet>
Using Internet Explorer
Internet Explorer supports compressed archive (CAB) files. WebView Livescope
provides the LiveApplet.cab, Glimpse.cab and PanoramaSnap.cab archives in the
folder used for applet installation.
<applet code="LiveApplet.class" width=450 height=380>
<param name="cabbase" value="LiveApplet.cab">
</applet>
This "cabbase" parameter is ignored by browsers other than Internet Explorer.
Shortening the Applet Download Time
You can reduce the time required to download an applet by archiving multiple class
files into a single CAB or ZIP file.
e
Note