Hi,
I’m working in Flash 5…I’ve made a random loading database of animations that’s the first thing to load in my movie. My problem is that after the random images fade in, display, and then fade out I need the next movie clip to load. Right now I can’t figure out how to get the second movie clip to load Following the random loading movie clips…all the other animations want to play at the same time the random movie clip plays. I used a modified version of the Kirupa random loading background…it’s on the timeline as “Location” with the action scripting for the random load on that layer. Can anyone tell me how how get the second animation to play After the random loading clips play?
This is the random loading script I’m using…
choice = Math.round(Math.random()*2);
if (choice == 0) {
location.loadMovie(“quote0.swf”);
break;
} else if (choice == 1) {
location.loadMovie(“quote1.swf”);
break;
} else if (choice == 2) {
location.loadMovie(“quote2.swf”);
break;
}
Thanks,
Telegirl