Free JAVA applet by Stig Christensen, Copenhagen May 2000
Homepage: http://hjem.get2net.dk/stig_christensen/
E-mail: stigc@get2net.dk
-------------------------------------------------------------
This applet is free and for use anywhere.
The HTML-tags is like this (an example with 5 links):
<applet code="colormenu.class" width=120 height=361>
<param name = "text1" value ="Altavista">
<param name = "text2" value ="Google">
<param name = "text3" value ="Yahoo!">
<param name = "text4" value ="Javaboutique">
<param name = "text5" value ="Java Sun">
<param name = "text6" value ="Stig Christensen">
<param name = "link1" value ="http://www.av.com">
<param name = "link2" value ="http://www.google.com">
<param name = "link3" value ="http://www.yahoo.com">
<param name = "link4" value ="http://javaboutique.webdeveloper.com/byDate/">
<param name = "link5" value ="http://java.sun.com/">
<param name = "link6" value ="http://hjem.get2net.dk/stig_christensen/">
<param name = "background_color" value ="000,000,000">
<param name = "selection_color" value ="200,200,200">
<param name = "text_color" value ="200,000,000">
<param name = "border_color" value ="0,0,1">
<param name = "fade_color" value ="0,1,0">
<param name = "fontsize" value ="12">
<param name = "fontface" value ="Century Gothic">
<param name = "target" value ="aktion">
-------------------------------------------------------
Decription og some of the parameters:
text1 .... textX : defines the text for link
link1 .... linkX : defines the http-link for each link
target : defines how to open the links.
could be "_self", "_blank" or a name
of a frame on your site.
fade_color : is the background fade color (behind the text)
Selection_color : is the color of the border that makes the rollover effect
---------------------------------------------------------
Importen!
"border_color" and "fade_color" arguments only consists of 1 or 0 digits.
Ex: "1,0,0"
This sets the color to red. It uses the RGB color system ("r,g,b").
It is possible to use to or three colors. Yellow: "1,1,0", white: "1,1,1")
It is also importen to use 3 digits in the arguments of "background_color",
"selection_color" and "text_color". If you want to use 80 as a color-code write "080".
The height og the applet could be computed like this. Number of texts mulitplied with 60 plus 1.
In this HTML-example: 6*60+1 = 361
------------------------------------------
end of text file