Hi.聽 I am very new to flash and I want my button to disappear after you click it.聽 I have mulitple buttons on the same stage and as each button is clicked, I want that button to go away.聽 Thanks so much.
Selected state buttonYou can set the visible (AS3) or _visible (AS2) property to false in your event handling function.... btnName.visible = false;
Selected state buttonIn the function for each button, you can tell that button's visible property to be false, or you can tell the alpha property to be 0, or you can move the button off the visible area of the stage.
No comments:
Post a Comment