Applet name: Clock
Applet Source: Clock2.java
Import(s): java.util, java.io, java.awt, java.applet
Feature(s): image
Author: Per Reedtz Thomsen
Following is a description of the parameters you can give to the applet, and how it looks.
Syntax: <PARAM NAME="FontFamily" VALUE="FamilyName">
where FamilyName is the name of the Font you want to
use. Currently, the fonts I can get to work are:
Default: TimesRoman
Syntax: <PARAM NAME="FontSize" VALUE="Size">
where Size is the point size you want the font to display
in.
Default: 12
Syntax: <PARAM NAME="FontWeight" VALUE="Weight">
where Weight is the weight to apply to the Font. Valid
values are:
It is not possible to combine the weights.
Default: plain
Syntax: <PARAM NAME="BGCol" VALUE="Color">
where Color is the hexadecimal representation of the background
color you wish to use.
Format: RRGGBB
Default: 'Netscape Gray' (c0c0c0)
Syntax: <PARAM NAME="FGCol" VALUE="Color">
where Color is the hexadecimal representation of the foreground
(text) color you wish to use.
Format: RRGGBB
Default: Black (000000)
Syntax: <PARAM NAME="DateFmt" VALUE="Format">
where Format is the format of the string you want to
display.
The string can contain text, as well as formatting fields. Formatting fields begin with the '%' character. Example: %H will display the current hour.
The following conversions from date(1) are not supported:
Default: "%a, %B %e %T"