Loadmovie and mask problems

Hi all,

Here is the setup for this story. I have a flash movie (MC_A)calling another mc (MC_B) through the loadMovie function. The movie being called, MC_B simmply has two layers, one of them being a mask.

Now the issue is when the movie loads I see MC_B but now MC_A is no longuer visible.

Does anyone have any ideas?

Thanks

Did you load them into the same place? Maybe you overwrote one of them.

Well the main movie is MC_A. MC_B is being loaded into that movie.

I am including the AS below.

[AS]
function populateNews(){
_root.createEmptyMovieClip(“container1”, 1);
_root.loadMovie(“smallMCTransition2.swf”, container1);

}
[/AS]