Quoter
The free Quoter applet takes a file of quotes (separated by Carriage Returns), and displays one at random in the applet window. You can set font size, font style, font name, left indent of text, right indent of text, top indent of text, color of text, background color, background image, whether you want to center the image or resize it to fit within the applet window, border color, and of course the quotes file.
Usage: Download 09-quoter.zip and unzip it in your HTML directory.
Java Source: quoter.java
HTML Source:
<applet archive="quoter.jar" code="TrivialApplet.class"
width=500 height=100>
<PARAM NAME=space VALUE=5>
<PARAM NAME=rightindent VALUE=5>
<PARAM NAME=leftindent VALUE=20>
<PARAM NAME=topindent VALUE=2>
<PARAM NAME=fontsize VALUE=18>
<PARAM NAME=fontname VALUE=TimesRoman>
<PARAM NAME=fontstyle VALUE=ITALIC>
<PARAM NAME=fontcolor VALUE=black>
<PARAM NAME=bordercolor VALUE=white>
<PARAM NAME=bgcolor VALUE=255:255:255>
<PARAM NAME=imagename VALUE=bar.jpg>
<PARAM NAME=resizeimage VALUE=false>
<PARAM NAME=imageheight VALUE=0>
<PARAM NAME=imagewidth VALUE=0>
<PARAM NAME=quotefile VALUE=quotes.txt>
</applet>
Author: Ian Charnas
Homepage: http://www.rac.net
|