
| Applet Name | HTML demo Filename | Customization Instructions |
|---|---|---|
| Eat me | pactxt.htm | Here |
| Rain | RainExample.html | Here |
| CueCards | CueCard.html | Here |
Note: If you get a forbidden error when using Firefox or IE then check the permissions. The myapplet directory needs to be 755 and all the files in it need to be 644. WS_FTP usually sets the permissions this way, if not fix them with chmod (see the tutorial on Unix Permissions).
If you get an a file not found error then make sure that you typed the link to myapplet correctly.
If you get an applet not found error, error loading applet or anything with applet and
error in it then check that all the required files are in the correct directory. Remember, you MUST transfer
everything in "binary" not "ascii" mode.
One last note on applets. If the applet files (the .class and other non .html files used by the
applet) are in a different directory then the html file that is "calling" or using the applet then
you need to tell the browser where to look. This is like when you have a picture on your webpage in
a different directory, you have to tell the browser where to look. Unfortunately, browsers don't
allow the same method for applets as for pictures. You have to add something to the applet tag. For
instance, if you had an applet named mytestapplet.class and it was in a subdirectory of public_html
called testing then the applet tag would look like:
<applet codebase="testing/" code="mytestapplet.class" height=50 width=100>
The codebase attribute tells the browser what directory to look for the applet files.
It's probably easiest just to put all your files into myapplet.
