Flasher Archive
[Previous] [Next] - [Index] [Thread Index] - [Previous in Thread] [Next in Thread]
Subject: | Re: FLASH: day countdown |
From: | John Croteau |
Date: | Mon, 25 Oct 1999 20:45:09 +0100 |
Hi Michael,
Many of the days til and time until JavaScript scripts on the web are
incorrect.
The script below works correctly (if the local clock is correct).
If for Flash 3 you can use a simplified version of my clock.
http://www.FlashCentral.com/Tech/Scripting/Index.htm
If for Flash 4 you can use Load variables or send the variable on the
SWF's URL with a server side script or JavaScript document.write of the
URL.
This and another accurate Time until script will be used in a upcoming
tutorial at the Bible but it wiill be a couple of weeks before i get to
it.
<HTML>
<Title> Flash Bible - Days Left</Title>
<SCRIPT>
var now = new Date();
var msPerDay = (24 * 60 * 60 * 1000);
var targetDate = new Date("December 25, 1999");
var daysLeft = Math.ceil((targetDate.getTime()-now.getTime()) /
msPerDay);
document.write ("Days Left = " + daysLeft + "<P>");
if (daysLeft > 1)
document.write ("Only " + daysLeft + " days left!");
else if (daysLeft == 1)
document.write ("Only one day left!!");
else if (daysLeft == 0)
document.write ("Today is the day!!!");
else
document.write ("Sorry! Too late!");
</SCRIPT>
</HTML>
--
Coming Soon Flash 4 Web Animation F/X and Design
http://www.amazon.com/exec/obidos/ASIN/1576105555/flashcentral
----------- -----------------------
John Croteau croteauerols [dot] com (mailto:croteauerols [dot] com)
------------- -------------------------
FlashTek (Advanced Websites with Flash) http://www.FlashTek.com/
Flash Bible (Fast track to good Flash) http://www.FlashBible.com/
Flash Central(The Universe Starts Here) http://www.FlashCentral.com/
The Flash Tech Resource (Tech Notes) http://www.FlashCentral.com/tech/
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
flasher is generously supported by...
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Streaming Media WEST '99 Conference & Exhibition
"The Worlds largest Internet Audio & Video Event"
December 7 - 9, San Jose Convention Center, California
Reserve your space today at http://www.streamingmedia.com
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
To unsubscribe or change your list settings go to
http://www.chinwag.com/flasher or email helpchinwag [dot] com
Replies
RE: FLASH: Need drawing tips, Lee Hunter
RE: FLASH: Need drawing tips, steve shelden
FLASH: day countdown, Michael Krisher
[Previous] [Next] - [Index] [Thread Index] - [Next in Thread] [Previous in Thread]