Counting down:
The code for the applet here is as follows:
<applet code="EnhancedCountdown.class" name="EnhancedCountdown" width="550" height="40" codebase=".">
<param name="background" value="005090">
<param name="foreground" value="c0c0c0">
<param name="CountdownDate" value="December 3, 2003 10:00:30 PM EST">
<param name="PreCountString" value="You have ">
<param name="PostCountString" value=" to send in orders">
<param name="CountdownReached" value="No more orders accepted">
</applet>
The modifiable parameters are as follows:
- background - Color code for the color of the background
- foreground - Color code for the color of text
- CountdownDate - The date to which we are counting down. It has to be in the format "Month day, year hr:min:sec AM/PM zone". Otherwise you'll get an error message.
- PreCountString - The prefix to the countdown date.
- PostCountString - The postfix after the countdown date.
- CountdownReached - The text to show after the countdown date and time have been reached.