***************************************************************************** In some applets, text, images or other objects can have a shadow or Shadow Displacement. If used, you specify the distance between the text and the shadow in pixels. Some applets will take Shadow Displacement a step further and ask you to define X-Position and Y-Position. "X" and "Y" positions are based on the Cartesian Coordinate system. X-Position is the Horizontal distance, in pixels, between the text (or other object), and the shadow. Y-Position is the Vertical distance, in pixels, between the text (or other object), and the shadow. ***************************************************************************** The Delay parameter:Where used, the Frame Delay, (or simply "Delay"), parameter is the time between two frames. Suppose you're looking at your television. The image you see is replenished every 20 milliseconds, so the Frame "parameter" for a television image should be 20 ms. This will yield an update frequency at 50 Hz, i.e. 50 images per second. In this applet the default frame delay is about 100 ms, i.e. 10 images per second. ******************************************************************************* Fonts:One problem with Java applets is the fonts. Because Java is platform independent, the number of fonts is limited. These fonts: ZapfDingbats, TimesRoman, Courier, Arial, Helvetica, Dialog and DialogInput will work on all platforms. The Font Size will be the size of the text in pixels. Note, that in Unix systems the maximum value of font size is 36 pixels. This means that values larger than that will be ignored. Also note that in some applets, having large font sizes may reduce the speed of the applet. Fonts can be bold or italic and you specify this by inserting yes or no in the required parameter/value field. ******************************************************************************* Images:In some applets you must specify images and sounds in order to make them work. ******************************************************************************* URL Links:To specify a URL on the Internet, write http://www.yourhost.com/page1.htm (known as an absolute URL) and not just www.yourhost.com/page1.htm OR ./page1.htm To specify a file in your hard disk, write file:///C:\MYCATALOG\hello.html and not C:\MYCATALOG\hello.html If you do not fully specify the links, they will not work. Applets using several text fields or file fields:If you are specifying items in an applet dependent on several text fields or file fields, make sure that each field has the same number of rows. Suppose that you have a message applet. In it you specify the text messages and a URL for each message. If you delete one row in the text items field and forget to do the same in the URL field, the applet will not run. **********************************************************************************