Can anyone tell me why this code is not working? Basically I am trying to get buttons that I have in a drop down menu load an external .swf into an empty movie clip placed on the main timeline. However for some reason it is not working. The buttons are contained in a movie called “menuItems” which is then placed in a movieclip called “mainMenu” which is then placed on the main timeline.
on (release) {
_parent.gotoAndPlay(“reverse”);
if (_root._root._root.currMovie == undefined) {
_root._root._root.currMovie = “personalData”;
container.loadMovie(“personalData.swf”);
} else if (_root._root._root.currMovie != “personalData”) {
if (container._currentframe >= container.midframe) {
_root._root._root.currMovie = “personalData”;
container.play();
}
}
}