(R561) Modify TickerTape Applet

I acquired this TickerTape applet from:
     Copyright (C) Mariappan Asokan 03/27/1997
     URL:   http://www.geocities.com/SiliconValley/Pines/2583
     email: masokan@worldnet.att.net
You can read the copyright restrictions (basically it only restricts commercial use) by looking at the first screen of his TickerTape.java source. You can get all of the necessary components either from his site (it comes in "zip" format) or from my directory: ~larryg/public_html/Java/ . The components that you need are: As explained in the previous two applets, you do this as follows: This html file can take a number of parameters which include the width and height of the applet, its speed moving across the screen, the number of URLs that it will display, the type of each URL (text or image), and each URL. You can have as many components (i. e., URL text and images) in the applet as you desire. The example TickerTapeApplet.html below shows a tickertape html which displays 4 components: two lines of scrolling text interspersed with two gif images:
<HTML><HEAD>
<TITLE> TickerTapeApplet.html </TITLE></HEAD>
<BODY>
Here is a ticker Tape Applet
<APPLET CODE="TickerTapeApplet.class" WIDTH=300 HEIGHT=100>
<PARAM NAME=Speed VALUE=50>
<PARAM NAME=NumberOfURLs VALUE="4">
<PARAM NAME=URL1 VALUE="...Hi there: here is an example of a Ticker Tape">
<PARAM NAME=URL2 VALUE="../Image/xbbee.gif">
<PARAM NAME=URLType2 VALUE="imagefile">
<PARAM NAME=URL3 VALUE="...You can place a variety of messages here.">
<PARAM NAME=URL4 VALUE="../Image/butterfly.gif">
<PARAM NAME=URLType4 VALUE="imagefile">
</APPLET>
</BODY> </HTML>
In addition, if you know even just a little bit of Java you can modify the applet by changing fonts, colors, backgrounds, etc.

(R561) Modify TickerTape Applet
© Copyright 1997 UW C&C