[index] - [registering] - [installing] - [f.a.q]

 Where do I start?
      First download our package for our Java applets. Then unzip it using any compression progam like WinZip. Double click on any html file to view the applets locally. Go to the applet of interest and look at the parameters, view the examples, and play around with the code generator.

 How do I implement the <applet> tag?

  <applet archive="java.jar" code="java.class" codebase="./" width=250 height=110>
       <param name="parameter_name" value="whatever">
  </applet>

TagDescription
CodeThis field points to the main class file that will be load first.
ArchiveMost new java applets will be contain in a single compressed file with the .jar extension. The .jar file is basically a .zip with a different name. This field is require if the applet is a .jar file. If there is no .jar file, this field is not required.
CodebaseIf your java class or jar file is in a different directory as your html file, this field is required to located where the class or .jar file is in. If your class files are in the same directory as your html file, this this field is not required.
WidthThe width of the applet to be displayed
HeightThe height of the applet to be displayed

<Param>
nameThe assigned name for the parameter so the applet can read the value properly.
valueThe value for the parameter.

 How do I add 6sense.com's applets to my web site?
      To use our applets, apply the code to your web pages and make sure the .jar file and/or the images files are there. Test it locally to make sure your code is correct. Then upload all the required files in your web server where you are hosting your site. Just uploading the .html document with the correct code will not work. You must upload all the .jar and/or images files into the server as well.


CopyRight © 1999-2002 IonChron, Inc.     Privacy Policy