Flash // Time
Flash // Time
Out of context: Reply #7
- Started
- Last post
- 10 Responses
- unformatted0
here's a start
daDate = new Date();
//if the date is before 12 noon
if (daDate <= 11) {
do this;
} else { //the date is after 12 noon
do this;
}
here's a start
daDate = new Date();
//if the date is before 12 noon
if (daDate <= 11) {
do this;
} else { //the date is after 12 noon
do this;
}