Page 1 of 1
a program that counts down time
#1
Posted 23 November 2003 - 12:23 AM
i want to know if there is a program that can show a count down until a specified date. if possible, one that can show 2 or 3 at the time
#3
Posted 23 November 2003 - 05:50 AM
Also VERY easy to make your own. you dont need to be some uber programmer to do it, i think thats one of the most basic of tutorials for most programming environments out there.
#5
Posted 25 November 2003 - 05:24 PM
If you want HTML, here is a Javascript program that you can use as an Active Desktop object! 
<script LANGUAGE="JAVASCRIPT">
<!-- hide this script tag's contents from old browsers
today = new Date();
BigDay = new Date("August 27, 2003")
msPerDay = 24 * 60 * 60 * 1000;
timeLeft = (BigDay.getTime() - today.getTime());
e_daysLeft = timeLeft / msPerDay;
daysLeft = Math.floor(e_daysLeft);
e_hrsLeft = (e_daysLeft - daysLeft)*24;
hrsLeft = Math.floor(e_hrsLeft);
minsLeft = Math.floor((e_hrsLeft - hrsLeft)*60);
secsLeft = Math.floor((hrsLeft - minsLeft)*60);
document.write(" <font class='countdown'>" + daysLeft + " day(s), " + hrsLeft +" hour(s), " + minsLeft +" min(s) TEXT HERE TEXT HERE");
// -- done hiding from old browsers -->
</SCRIPT>
#7
Posted 25 November 2003 - 05:44 PM
FthrJACK, on Nov 25 2003, 06:31 PM, said:
Nice going Gamehead! 
Thanks...
#8
Posted 27 November 2003 - 07:49 PM
how would i make it an active desktop item
(
im not a complete id***, some parts are missing :/ )
(
#9
Posted 27 November 2003 - 07:51 PM
sven, on Nov 27 2003, 08:49 PM, said:
how would i make it an active desktop item
(
im not a complete id***, some parts are missing :/ )
(
Didn't say you were...
Display Properties>Desktop>Customize Desktop...>Web Tab
...Customize it there!
#10
Posted 27 November 2003 - 08:43 PM
ok, thanks, and i was joking about that
edit: but now all my icons have a grey outline and stuff
Post edit: nevermind, fixed it
edit: but now all my icons have a grey outline and stuff
Post edit: nevermind, fixed it
Share this topic:
Page 1 of 1



Help

Back to top









