I have a small interface at the begging of my scene (frame1) using the swapdepths command to stop background buttons being clicked beneith pressed button menus.
AS on Button inside movieclip (MC):
on (rollOver, dragOver) {
play();
controller.gotoAndStop(1);
[COLOR=Red]_root.x +=2;
_root.MC.swapDepths(_root.x);[/COLOR]
}
The next few frames are seperate pages and do not contain this interface yet all the buttons selected from the frame1 interface are still prominant in every frame after this. How can I disable swapdepths in the frames after this?