How do i make it so when a movieclip is played by using .play() everything else on screen is hidden?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
There are a number of ways to do this, depending on how you have your code laid out. You can move the MovieClip to the top of the main display list and access everything else calling otherItem.visible = false;
Or just put a blank background behind the movieclip so it covers everything. Provide some more insight into what you’re doing and you’ll get a less generic answer.