Hello, Could someone help me figure out why my external swfs are not loading into my empty MC? I am creating a full site in flash, with a short intro animation and transition before button clicks. On button clicks, the transition plays, but the external swfs don't play??
This is the code on my buttons:
I can send fla file if someone can help :-)
b1.onRelease = function() {
if (_root.section != "about.swf") {
_root.section = "about.swf";
_root.transition.gotoAndPlay("closing");
}
};
b2.onRelease = function() {
if (_root.section != "slideshow.swf") {
_root.section = "slideshow.swf";
_root.transition.gotoAndPlay("closing");
}
};
b3.onRelease = function() {
if (_root.section != "media.swf") {
_root.section = "media.swf";
_root.transition.gotoAndPlay("closing");
}
};






Bookmarks