basically for my website in my main fla, i have some buttons which when pressed work fine, however i have one button which is a mc as it is a sub menu buton, this does not work like the others, i no this is because the others are buttons and this is a MC, so i wanted to ask anyone, what i need to change in the following AS which is for a button to make it work for a MC?
on (release) {
if (_root.currMovie == undefined) {
_root.currMovie = “design”;
container.loadMovie(“design.swf”);
} else if (_root.currMovie != “design”) {
if (container._currentframe >= container.midframe) {
_root.currMovie = “design”;
container.play();
}
}
}