EERT (1K)Installation (1K)

(!) - param is required, (*) - param is optional

name="copyright" value="Javvy.com" (!)
All Javvy applets are free, but not nameless. You should include this param exactly as shown.

name="_img" value="imagefileurl" (!)
Provide url of the tree image file here. For example, "images\sam0.gif". Image should have width=176 and height=16 (11 images of width=16,height=16):




name="_bg" value="r|g|b" (!)
Background color. Par exemple, "255|255|255" is white and "0|0|0" is black.

name="_fg" value="r|g|b" (!)
Foreground color.

name="Xa..Xz" value="text|url|statustext|open" (!)
Where "X" is a name of parent container. If you want "do nothing onclick", provide "n" as "url". "open" is optional, use it to open container from begining.

OK. Let's try it (no links - url=n ). For the first level there is no parent, so X="":
<param name=a   value="name=a|n|a description">
<param name=b   value="name=b|n|b description">
<param name=c   value="name=c|n|c description">
<param name=d   value="name=d|n|d description">
<param name=e   value="name=e|n|e description">
<param name=f   value="name=f|n|f description">


Let's add three items to the "a", so X="a":
<param name=a   value="name=a|n|a description">
  <param name=aa   value="name=aa|n|aa description">
  <param name=ab   value="name=ab|n|ab description">
  <param name=ac   value="name=ac|n|ac description">
<param name=b   value="name=b|n|b description">
<param name=c   value="name=c|n|c description">
<param name=d   value="name=d|n|d description">
<param name=e   value="name=e|n|e description">
<param name=f   value="name=f|n|f description">

Let's add two items to the "ac", so X="ac" and open "a":
<param name=a   value="name=a|n|a description|open">
  <param name=aa   value="name=aa|n|aa description">
  <param name=ab   value="name=ab|n|ab description">
  <param name=ac   value="name=ac|n|ac description">
    <param name=aca   value="name=aca|n|aca description">
    <param name=acb   value="name=acb|n|acb description">
<param name=b   value="name=b|n|b description">
<param name=c   value="name=c|n|c description">
<param name=d   value="name=d|n|d description">
<param name=e   value="name=e|n|e description">
<param name=f   value="name=f|n|f description">


name="_one" value="true" (*)
Level opening strategy. Parameter is optional. If defined, applet will open ONLY ONE container per level.

name="_target" value="framename" (!)
Valid values:
"_self" show in the current frame
"_parent" show in the parent frame
"_top" show in the top-most frame
"_blank" show in a new unnamed top-level window
"name" show in a new top-level window named name
Note: param is required, so define one of values above (if you are not using frames set "_target" to "_self)




sample1 >