Vanilla 1.1.4 is a product of Lussumo. More Information: Documentation, Community Support.
time = new Date();
// time object
var hours = time.getHours(); // returns a number between 0 and 23
this.createEmptyMovieClip("loadContainer", this.getNextHighestDepth());
if(hours > 9 && hours < 14){
loadMovie("cliptoload.swf",loadContainer);
}else{
loadMovie("othercliptoload.swf",loadContainer);
}
// if hour falls between 9 and 14 load movie A
// if hour is anything outside that range load movie B
1 to 2 of 2