Copyright (c) 2000 By Goodwin Software
This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 or the Licenses, or (at your option) any later version.
This program is distrubuted in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABLITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
For any questions or comments regarding this program, please e-mail
us a support@goodwinsoftware.com.
Introduction
Ticker Tape is a java applet that can be used to add a scrolling line of text your webpage. Figure 1 illustrates Ticker Tape in use.
Figure 1 - The Ticker Tape Applet
Ticker Tape can be sized to whatever dimensions you require. All colors
are configurable and the time delay between scrolling the letters is configurable.
Using Ticker Tape
To use the Ticker Tape applet on a webpage, you must edit the page's HTML code to include a applet tag like the following:
<applet code="TickerTape.class" width="300" height="40"> <param name="tickerline" value="Goodwin Software makes great little Java applets and a lot more!"> </applet>As you can see from the above example HTML code, the line of text to be displayed is passed using a param with a name of "tickerline" and the value set to the text line's contents.
The other configurable parameters that Ticker Tape recognizes are
presented in the following table:
| name | value | default value |
| delay | Number of milliseconds to delay between scrolling lines. | 200 |
| outborder | Color of the scroll window's outmost border. | 0xCCCCCC |
| middleborder | Color of the scroll window's middle border. | 0x000000 |
| innerborder | Color of the scroll window's innermost border | 0xCCCCC |
| textbackground color | Color of the text's background. | 0x000000 |
| text color | Color of the text. | 0x00FF00 |
Once you've created the webpage simply upload it and the file TickerTape.class
to
your website.