<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 part identifies the width of the applet (usually measured in screen pixels). Third part of the applet tag identifies the height of the applet (usually measured in screen pixels). |
<param name="applet_width" value="400"> | Width of the applet. Please do not forget set this parameter. It must be same value with applet tag. |
<param name="applet_height" value="18"> | Height of the applet. Please do not forget set this parameter. It must be same value with applet tag. |
<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 to 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="textN" value="Welcome to quality Java Applets Home"> | Message body. (N =1,2,3...,number of message). You must start at 1 and increase by 1 at each time. |
<param name="linkN" value="http://www.appletcollection.com/"> | The absolute URLs. |
<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>. |