Hey,
I have a main movie with a MC “contents” in which i load a movie “movie1.swf”
After movie1 plays movie 2 has to start immediately and likewise for movie 3 which means the movies 2 and 3 have to be preloaded before the last frame of movies 1 & 2 respectively.
Can someone tell me how i can do this? I have a preloader for all the movies and the script is below.
FRAME 1
bytes_loaded = Math.round(this.getBytesLoaded());
bytes_total = Math.round(this.getBytesTotal());
getPercent = bytes_loaded/bytes_total;
this.loadBar._width = getPercent*100;
this.loadText = Math.round(getPercent*100)+"%";
if (bytes_loaded == bytes_total) {
this.gotoAndPlay(3);
}
FRAME 2
this.gotoAndPlay(1);
On the last frames of movie 1, 2 and 3 i have _root.contents.loadMovie(“moviename.swf”);
Any help with this will be appreciated!