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.