External SWf recursion issues!

I’ve been succefull loading external swf’s into a ‘Main’ container site, but while doing further testing I realized that the external swf’s were causing me to go over my recursion limit.
I need to be able to load in 24 individual swf’s, but at this current point and time, I can only get to 4 before reaching my recursion limit.

Please note that I’m loading the external swf’s in 1 at a time. Below is a sample of the code that I’m currently using.

[COLOR=Teal]abtv.onPress = function(){
mcHolder.unloadMovie();
var mc:MovieClip = createEmptyMovieClip(“mcHolder”, 0);
mc.loadMovie(“http://sandboxtv.com/Abandonednation/SandBoxTV_Main.swf?is_remote=true”, “container_mc”);
mc._lockroot = true;
mc._x = 275;
mc._y = -36;
mc._xscale = 70;
mc._yscale = 70;[/COLOR]
}

:hurt::d: