I think i’ve found the problem:
you have actions on your buttons and a onPressfunction. it seems like the buttonactions override the onPressfunction.
I have skipped the onPress function (in layer 13 of the menusys) and put it in the button:
[AS]on (release) {
gotoAndStop(2);
}
on (press) {
if (_root.section != “events.swf”) {
_root.section = “events.swf”;
//trace(“events.swf”);
_root.transition.gotoAndPlay(“closing”);
_parent.submenu.gotoAndPlay(“events”);
_parent.buttonEnable();
}
}[/AS]