Attribute for <APPLET ...>
CODE = "text string"

CODE gives the file name of the applet to run. For example, this code says to use the applet "MyApplet.class":

this code produces this
<APPLET CODE="MyApplet.class" WIDTH=100 HEIGHT=100>
<PARAM NAME=TEXT VALUE="Hi There">
<P>Hi There<P>
</APPLET>

Hi There

If the class file is in a different directory than your HTML file, only give the file name, not the path. Use CODEBASE to give the path.

WRONG RIGHT
<APPLET 
CODE="../graphics/MyApplet.class"
WIDTH=100 HEIGHT=100>
<APPLET 
CODE="MyApplet.class"
CODEBASE="../graphics/"
WIDTH=100 HEIGHT=100>
(doesn't work)

Hi There





About the Author
Copyright 1997-2002 Idocs Inc. Content in this guide is offered freely to the public under the terms of the Open Content License and the Open Publication License. Contents may be redistributed or republished freely under these terms so long as credit to the original creator and contributors is maintained.