Applet Name: User
Applet Source: User.java
Import(s): java.applet, java.awt, java.awt.image, java.net
Feature(s): text, network
Author: Scott Clark
User is a Network applet that takes three parameters: fgColor - A Color (in hex, just like in the "" tag) that is the foreground color (font color) of the text to be displayed. bgColor - A Color (in hex, just like in the "" tag) that is the background color of the applet. text - This is the text that is to be displayed before the host name/address.
Usage example:
<APPLET code="User.class" width=300 height=25> <PARAM NAME="text" VALUE="How's it going "> <PARAM NAME="bgColor" VALUE="#000000"> <PARAM NAME="fgColor" VALUE="#FFFFFF"> </APPLET>