Please help with loading multiple movies

Hi,

I am trying to load three different external swfs into a single frame of the main swf movie but don’t know how.

I tried using this code:

loadMovie(“external.swf”, “movieholder”);

but this only loads a single movie into that frame.

Can you please help me find a way to load three movies into 1 frame?

Thanks

cant you just do this:
[AS]
loadMovieNum(“movie1.swf”,“level”);
loadMovieNum(“movie2.swf”,“level”);
loadMovieNum(“movie3.swf”,“level”);
[/AS]

or create an array and load it from that