Publishing a swf made up of multiple slides
Is there any difference (other than size) between a swf published from one slide and a swf that is made up of multiple slides? I'm working in Captivate 4 and have 17 separate projects - some made up of 1 slide - some of mutiple slides. Each project is published into a swf using the same settings. I play them from Flash and want them to play sequentially, when one is finished - play the next one. I'm using this code to move from one swf to the next:
onClipEvent(enterFrame){
var content_mc:MovieClip = _parent.empty_mc.slide0__color_mc;
if (content_mc._totalframes > 0 && (content_mc._currentframe == content_mc._totalframes)){
_parent.nextBtn();
}
}
It works if the swf is created from a project having only one slide. Doesn't work if the swf is created from a project having several slides. ![]()
So, is there a difference in the swfs?
Thanks for the help.