Installation Instructions


1. Place the class files and any image or text file needed by the applet in the same directory.

2. If you want to place the above-mentioned files in a directory that is different from the html file, specify the directory in the applet tag using "codebase".

Example : <applet code="navbar.class" codebase="http://myurl/navbar" width=600 height=100>

This tells the viewer or browser to load the applet whose compiled code is at the URL http://myurl/navbar/navbar.class. It is advisable to place all the files in the same directory if you are not an experienced in the use of Java applet.

3. The class files can be either in its uncompressed form or compressed into an jar archive or zip archive. If the class files are compressed in an archive, specify the file archive in the applet tag using "archive".

Example : <applet archive="navbar.zip" code="navbar.class" width=600 height=100>

4. If you are using a code based html editor, you could either get the code by opening applet.html or copying the text from parameters.html. If you are using a visual (WYSIWYG) html editor, open applet.html to modify the file. Alternatively, you could copy the code, change to HTML view and paste the applet code in the body of your web page.

5. Change the parameters according to your preferences. Note that the parameters are case-sensitive. Additional details about the configuration of the applet could be found in parameters.html and information.html, including its use with frames and windows.

6. Once you are satisfied with the modifications, upload the files to your server. If the server does not accept filenames with "$" in them, compress the files in a zip archive and specify the archive file in the applet tag (Refer to step 3).