Play swfs continually

I think I found the right place for this post now. I need to play swfs in order. After one is done playing, the next comes up and starts. I found this in the mx section:


[COLOR=#0000ff]this[/COLOR].[COLOR=#0000ff]createEmptyMovieClip[/COLOR][COLOR=#000000]([/COLOR][COLOR=#ff0000]"containerClip"[/COLOR],[COLOR=#0000ff]this[/COLOR].[COLOR=#0000ff]getNextHighestDepth[/COLOR][COLOR=#000000]([/COLOR][COLOR=#000000])[/COLOR][COLOR=#000000])[/COLOR];
[COLOR=#000000]**var**[/COLOR] movLoad:[COLOR=#0000ff]MovieClipLoader[/COLOR] = [COLOR=#000000]**new**[/COLOR] [COLOR=#0000ff]MovieClipLoader[/COLOR][COLOR=#000000]([/COLOR][COLOR=#000000])[/COLOR];
[COLOR=#000000]**var**[/COLOR] myListener:[COLOR=#0000ff]Object[/COLOR] = [COLOR=#000000]**new**[/COLOR] [COLOR=#0000ff]Object[/COLOR][COLOR=#000000]([/COLOR][COLOR=#000000])[/COLOR];
myListener.[COLOR=#0000ff]onLoadInit[/COLOR] = [COLOR=#000000]**function**[/COLOR][COLOR=#000000]([/COLOR]thisClip:[COLOR=#0000ff]MovieClip[/COLOR][COLOR=#000000])[/COLOR] [COLOR=#000000]{[/COLOR]
 thisClip.[COLOR=#0000ff]onEnterFrame[/COLOR] = [COLOR=#000000]**function**[/COLOR][COLOR=#000000]([/COLOR][COLOR=#000000])[/COLOR] [COLOR=#000000]{[/COLOR]
  [COLOR=#0000ff]if[/COLOR] [COLOR=#000000]([/COLOR][COLOR=#0000ff]this[/COLOR].[COLOR=#0000ff]_currentframe[/COLOR] == [COLOR=#0000ff]this[/COLOR].[COLOR=#0000ff]_totalframes[/COLOR][COLOR=#000000])[/COLOR] [COLOR=#000000]{[/COLOR]
   movLoad.[COLOR=#0000ff]loadClip[/COLOR][COLOR=#000000]([/COLOR][COLOR=#ff0000]"01.swf"[/COLOR],[COLOR=#0000ff]this[/COLOR][COLOR=#000000])[/COLOR];
  [COLOR=#000000]}[/COLOR]
 [COLOR=#000000]}[/COLOR];
[COLOR=#000000]}[/COLOR];
movLoad.[COLOR=#0000ff]addListener[/COLOR][COLOR=#000000]([/COLOR]myListener[COLOR=#000000])[/COLOR];
movLoad.[COLOR=#0000ff]loadClip[/COLOR][COLOR=#000000]([/COLOR][COLOR=#ff0000]"00.swf"[/COLOR],[COLOR=#0000ff]this[/COLOR].[COLOR=#000080]containerClip[/COLOR][COLOR=#000000])[/COLOR];

How do you do this with as3? There is now a loader class and a movie clip class, but no moviecliploader class. Any help would be great. Thanks.