Applet
parameters
Required global
parameters:
width and height Change the width and height to
indicate the size of the applet.
numberOfLines This is the number of lines to
display.
background This is the background color of the
applet. There are three different ways to specify this parameter: color
name, by RGB color values, or by special multi-colored fade background
name:
To use a single colored background, use one of the following colors
below: black
blue
cyan
darkGray
gray
green
lightGray
magenta
orange
pink
red
white
yellow
Or, you can specify the red, green, and blue values for a
unique RGB color: specify three number from 0 - 255 separated by commas.
For example code this for the color red: <param name=background value="255,0,0">
Or you can use one of the special multi-colored fade backgrounds, use
one the following parameters: special1 - black fade to green
special2 - light blue fade to light green
special3 - black fade to blue
special4 - red fade to yellow
special5 - black fade to red
For example, to use the 'red fade to yellow'
background (special4), code the background parameter as follows:
<param name=background
value="special4">
scrollDelay This controls the speed of the scroll,
the lower the number the faster it scrolls.
lineSpace This controls how much space is between
each line vertically.
linkFrame This controls which HTML frame to use when
a hyperlink is clicked. Use this parameter like the HTML Target
attribute, standard HTML frames "rules" apply. _self - load in current frame.
_parent - load in parent frame.
_top - load in topmost frame.
_blank - load in new unnamed top-level frame.
<other> - Show in new top level window named <other>.
linkColor This controls the color of the
hyperlinked line when the mouse is placed over the line. Colors
supported are the same as background.
manualPause This is the amount of time the scroll will
pause when the applet is clicked on. To resume scrolling, click again.
Entered in miliseconds - 5000 is 5 seconds.
linkClick This is the number of times to click on a
hyperlinked line. Use either 1 or 2, for a single or double
click. Required default
parameters:
sizeDefault This is the default text size for each
line.
lineDefault This is the default text that is
displayed for each line (usually the default is blank, and this is
overridden).
colorDefault This is the default color for all
lines. Colors supported are the same as background.
fontDefault This is the default font for all lines.
Use one of the following below: Dialog
Helvetica
TimesRoman
Courier
styleDefault This is the default font style for
all lines. Use one of the following below: PLAIN
ITALIC
BOLD
linkDefault This is the default URL for all lines
(the default is usually blank). Enter as a standard URL: http://www.geocities.com/SiliconValley/Bay/6879
pauseValueDefault This is the default pause value
for all line (the default is usually zero).
lineOffsetDefault This is the default starting
position for all lines (starting at position zero).
Optional parameters (controls each
individual line):
The same as the default parameters, just replace
'Default' with the line number, for
example:
To change the default text for the first line,
use the parameter 'line1': <param name=line1 value="Free Vertical text
scroller">
|