Hi,
I’m working on a site where;
-
My main movie loads a sub navigation swf into an empty MC named “sub1”. No problem there.
-
The subnav swf contains buttons (movie clips in this case) which should then load their respective swf file into an empty MC in the main movie called “pics”
Here is the code for button 1 in the subnav swf:
_root.sub1.but=0;
but1.onRelease = function() {
if (_root.pics.section != "kitchen.swf") {
_root.pics.section = "kitchen.swf";
_root.pics.gotoAndPlay();
}
};
Doesn’t work. Anyone know what I’m doing wrong?
Thanks