Loading swf into swf

ssssuusiusuisf;asohgsad’rihgasd’pihghiHello,

Let me preface this by saying my Flash skills are beginner at best. I’m trying to load an .swf into a .swf but modifying the tutorial on Kirupa that deals with loading external .swf’s (excellent by the way). I have no problem getting the file to load and play to the midframe, but for some reason, it won’t play the outro before loading the next .swf. Here’s the AS I’m using:

on (release) {
if (_root.illustration.currMovie == undefined) {
_root.illustration.currMovie = “catClips/illusClips/prt01”;
container2.loadMovie(“catClips/illusClips/prt01.swf”);
} else if (_root.illustration.currMovie != “catClips/illusClips/prt01”) {
if (container2._currentframe >= container2.midframe) {
_root.illustration.currMovie = “catClips/illusClips/prt01”;
container2.play();
}
}
}

Any suggeation as to why this isn’t working? Thanks in advance.

try placing all swf you load into the root directory

I’ll give it a try to see if that will make them work. The problem is I am building a portfolio of my illustration, design, and photography work and don’t want to have 60 different swf’s in my root folder. The idea was to keep them a little more organized than that. Like I said before, there is no problem accessing the files, just getting them to play out the rest of the animation before loading the next one.