TextColor Parameter - Optional |
<param name="TextColor" value="#FF0000">
This is the color of the text of the message the applet
will display. The default is red, #FF0000. |
. |
TextLinkColor Parameter - Optional |
<param name="TextLinkColor" value="#00FF00">
This is the mouseover link color of the message the applet
will display. The default is green, #00FF00. |
. |
FontName Parameter - Optional |
<param name="FontName" value="Courier">
Java applets accept a limited number of fonts. Use of
fonts other than these may crash the applet. Among the accepted
fonts are: Dialog, Courier, TimesRoman, Helvetica, Symbol. The
default is usually Dialog. |
. |
FontStyle Parameter - Optional |
<param name="FontStyle" value="0">
Font style is set numerically in this applet. Do not use
style names. There are four styles. The default is 0,
plain. These are the acceptable parameter values:
.........................0 = plain
.........................1 = bold
.........................2 = italic
.........................3 = bold italic |
. |
FontSize Parameter - None!
Please Read! |
We knew you'd intuitively look for this parameter (we
would, too.) There is no such parameter for this applet. This applet
autosizes the text into the applet space. To
change the overall size of the font, change the height= in the
<applet> tag. This applet works well with large sizes. |
. |
VerticalBias Parameter - Optional |
<param name="VerticalBias" value="0">
This is strictly optional, but useful for fine adjustment of the
vertical position of the text in the applet space. It is most frequently
used with large fonts, which tend to appear a bit high in the frame.
The default value is 0; negative numbers are allowed. Proportioning
of the font is not affected. |
. |
Speed Parameter - Optional |
<param name="Speed" value="25">
This sets the scrolling speed of the text. Higher values produce
slower scrolling. The default is 25. In general this need not
be set; but you may wish to adjust it for smoothest scrolling.
Negative numbers violate fundamental cosmic rules. |
. |
Pause Parameter - Optional |
<param name="Pause" value="1000">
This sets the period of time the text will wait before it begins
scrolling. The value is in milliseconds, and the default is 1000
(that is, 1 second). |
. |
MouseMode - Optional / *Required* to
Activate Links! |
<param name="MouseMode" value="1">
You must set this value to 1 for the link parameter to work. As the
applet is frequently used only for a simple marquee, the default value is 0
-- which deactivates linking. |
. |
StatusBarText - Optional |
<param name="StatusBarText" value="This text will appear in
the status bar...">
This sets the text that will appear in the status bar of the browser. |
. |
BackgroundColor Parameter - Optional |
<param name="BackgroundColor" value="#000000"> This sets the
background color of the
applet. #000000 is the default.
|