Here is my code for my instructions button:
on (release) {
this.attachMovie(“howToPlay”, “howToPlay”, 10);
howToPlay._x = 275;
howToPlay._y = 175;
howToPlay._alpha = 75;
}
My question is this, when this movieClip is called, you can still select the buttons behind the movieClip. What I am trying to do, is give the movieClip the focus so the player cannot interact with the mainstage.
NOTE: I have a “close” box on the movieClip being called to stage. So when the player chooses “close”, they will go back to the main stage and the movieClip is unloaded.