| TextColor Parameter - Optional |
|
<param name="TextColor" value="#FF0000">
This is the color of the text of the first message the applet
will display. Text color may be changed subsequently with the jssDo(
) function. The default is red, #FF0000. |
| . |
| TextLinkColor Parameter - Optional |
|
<param name="TextLinkColor" value="#00FF00">
This is the mouseover link color of the first message the applet
will display. The text link color may be changed subsequently with
the jssDo( ) function. 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.
Remember, this applet auto-sizes the text into the applet space. To
change the overall size of the font, change the height= in the
<applet> tag. This applet works quite 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's 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="0">
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). |
| . |
| BlankingInterval - Optional |
|
<param name="Pause" value="250">
This sets the period of time the applet space will be blank (no text)
between presentation of messages. The value is in milliseconds, and
the default is 10. Setting this to around 250 is often desirable, as
it gives the eye a moment to rest between messages. |
| . |
| MouseMode - Optional / *Required* to
Activate Links! |
|
<param name="MouseMode" value="1">
You must set this value to 1 for links to work. As the
applet is frequently used only for active labels, the default value is 0
-- which deactivates any links. |
| . |
| 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
initial background color of the
applet. #000000 is the default. The background color may be
subsequently changed with the JavaScript jssDo( ) function.
|