<applet code="newsticker.class" width=400 height=18> | The applet tag identifies the location, class file name, and size of a Java applet. The first part of the tag code=newsticker.class identifies the name of the Java applet. The second and third part of the applet tag identifies the width and height of the applet (usually measured in screen pixels). |
<param name=regcode value=""> | Registration code (if you have it). In the "regcode" parameter, place the registration code you purchased from us. You have to pay small amount of money and receive your registration code (regcode). |
<param name="info" value="Applet by Gokhan Dagli"> | Information about the Newsticker. |
<param name=bgcolor value="000000"> | Background color of the applet. |
<param name="fontcolor" value="fffff0"> | Text color. |
<param name="highlight_color" value="eeee90"> | Highlight text color. |
<param name="delay_time" value="4000"> | Delay period. Applet waits for next message. |
<param name="scroll_delay" value="8"> | Scroll delay. |
<param name="scroll_jump" value="2"> | scroll_jump is the distance in screen pixels to jump between frames. |
<param name="font_type" value="Arial"> | Font family (Arial,TimesRoman,Courier,...). |
<param name="font_size" value="11"> | Font size. |
<param name="font_style" value="1"> | Font style (0->Plain,1->Bold,2->Italic,3->Bold+Italic). |
<param name="text_alignment" value="center"> | This tag identifies alignment of messages. left or center. |
<param name="left_margin" value="10"> | Left margin of message text. (if text_alignment parameter is left) |
<param name="text1" value="Newsticker is a Java Applet from Japplets"> | First message. |
<param name="link1" value="http://japplets.tripod.com/newsticker.html"> | First link. |
<param name="text2" value="Newsticker is in the Javaboutique top20 list"> | Second message. |
<param name="link2" value="http://japplets.tripod.com/newsticker.html"> | Second link. |
<param name=target_frame value="_self"> | Target frame. |
</applet> | The last part works like all other HTML tags and defines the end of the applet tag </applet>. |