PDA

View Full Version : dynamic pic for time of day


tanya
11-29-2002, 06:11 PM
I saw a script once wehre depending on the time on the viewers computer, they would see a different image or something rather.

So if it was am they would see something pertaining to the day, if it was pm ..well you get the picture!

It would be fabulous if anyone can help out here, I promise to send you a christmas card
:thanks:

happymoonboy
11-29-2002, 06:59 PM
this might help

myDate = new Date();
myDate.getHours();
time = myDate.getHours();
// the "17 is 5:00 in 24 hour time
if (myDate.getHours() > 17) {
// this would be where your mc with your evening
// graphic would be
myEveningMc._visible = 1;
}

tanya
12-01-2002, 09:33 PM
Thanks a bunch for your reply,
I must say that I like your nic name
:D

happymoonboy
12-02-2002, 05:36 PM
you are more than welcome!, i hope that worked for you. and thank you for your compliment. :)