Loading a sequence of external swf clips

im using the script below to load external swf clips. the script loads “clip01.swf” by default. what i want is for the script to start loading another clip (lets say “clip02.swf”) as soon as the first one finishes (which of course has to be unloaded) and so on. so basically i’d have a sequence of separate external swf clips that get automatically loaded one after another. any ideas how to do that? thanks a lot!:bounce:

MovieClip.prototype.fadeIn = function() {
this.onEnterFrame = function() {
if (this._alpha<100) {
this._alpha += 10;
} else {
delete this.onEnterFrame;
}
};
};
ad_preloader._visible = false;
loading_text02._visible = false;
var empty = this.createEmptyMovieClip(“container”, “100”);
empty._x = 240;
empty._y = 263;
my_mc = new MovieClipLoader();
preload = new Object();
my_mc.addListener(preload);
preload.onLoadStart = function(targetMC) {
trace(“started loading “+targetMC);
container._alpha = 0;
ad_preloader._visible = true;
loading_text02._visible = true;
};
preload.onLoadProgress = function(targetMC, lBytes, tBytes) {
ad_preloader._width = (lBytes/tBytes)*100;
};
preload.onLoadComplete = function(targetMC) {
container.fadeIn();
loading_text02._visible = false;
ad_preloader._visible = false;
trace(targetMC+” finished”);
};
//default image
my_mc.loadClip(“clip01.swf”, “container”);