Flash // Time
Flash // Time
Out of context: Reply #8
- Started
- Last post
- 10 Responses
- unformatted0
oops
daDate = new Date();
//if the date is before 12 noon
if (daDate.getHours() <= 11) {
do this;
} else { //the date is after 12 noon
do this;
}
oops
daDate = new Date();
//if the date is before 12 noon
if (daDate.getHours() <= 11) {
do this;
} else { //the date is after 12 noon
do this;
}