| APPLET |
|
| Used to embed a Java applet into an HTML document. Text appearing between the APPLET tags are visible in browsers which do not support Java. The text is disregarded by those browsers which do support Java. For example: |
|
| <APPLET CODE="start.class">
If you can see this, your browser does not support Java.
</APPLET> |
|
| APPLET Attributes: |
|
| ALIGN="LEFT, RIGHT, or CENTER" |
| The ALIGN attribute is used to define how the item is aligned within the document. ALIGN="LEFT" will position the item flush with the left side of the document. ALIGN="RIGHT" will position the item to the right side of the document, and ALIGN="CENTER" will position the item equidistant from the left and right sides of the document. |
|
| ALT=" ... " |
| This attribute will display alternate text if the function called by this attribute is not available or is not supported. |
|
| CODE="URL" |
| This attribute is used to define the absolute or relative location of the executable Java *.class file. |
|
| CODEBASE="URL" |
| This attribute is used to define the default location of all Java *.class files to be used. |
|
| HEIGHT="n" |
| This attribute specifies the HEIGHT, measured in pixels, of the object to which it has been assigned. |
|
| HSPACE="n" |
| This attribute will set the amount of blank space, measured in pixels, on either side of the object. |
|
| NAME=" ... " |
| This tag is used to mark a location within a document with a unique name. This named location can then be quickly moved to by means of a hyperlink using the HREF="#URL" attribute. Note the pound (#) sign before the URL. The pound sign used in this way indicates to the browser that the target location has been defined by the NAME=" ... " attribute. |
|
| PARAM NAME=" ... " |
| This attribute defines the program parameters to be passed to the program or executable file. |
|
| TITLE=" ... " |
| The TITLE attribute is used to display a note or information in a popup window pertaining to the object to which it was assigned. The popup window is invoked by holding the mouse pointer over the object. |
|
| VSPACE=" ... " |
| This attribute defines the amount of blank space, measured in pixels, which will appear on the top and bottom of the object. |
|
| WIDTH="n" |
| This attribute defines the width, measured in pixels, of the object to which it has been assigned. |
|
| This tag also accepts the following Event Handlers: |
|
onAfterUpdate
onBeforeUpdate
onBlur
onClick
onDataAvailable
onDataSetChanged
onDataSetComplete
onDblClick
onDragStart
onErrorUpdate
onFocus
onHelp
onMouseDown
onMouseUp
onMouseOver
onMouseMove
onMouseOut
onKeyPress
onKeyDown
onKeyUp
onReadyStateChange
onRowEnter
onRowExit |