Java Repository
LED Sign

Name: LED Sign
Function: Puts a LED-like light sign on your page. The sign can do several effects, such a scroll left, right, up, and down, blink, appear, and "pixelate".
From: Darrick Brown's home page, of Hope College
Syntax:
<applet codebase="http://www.cse.nd.edu/java/LEDSign/LED/" code="LED.class" 
   width=500 height=48 align=center>
   <param name="script" value="YOUR_SCRIPT_NAME.led">
   <param name="border" value="2">
   <param name="bordercolor" value="100,130,130">
   <param name="spacewidth" value="3">
   <param name="wth" value="122">
   <param name="ht" value="9">
   <param name="font" value="../fonts/default.font">
   <param name="ledsize" value="3">
</applet>

Where YOUR_SCRIPT_NAME.led is the URL of an ASCII script file that describes the messages that you want to display.

The other values can be tweaked to your liking. The font path is correct as stated, and shouldn't need to be changed unless you want to supply your own fonts.

Demo: Click here
Docs: Click here

www-java@cse.nd.edu