Is it possible to add a child to the current frame only?
I know you can just remove/hide them, and generate/show them again.
But isn’t there an easier way?
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.
Old school way:
If you have a timeline you can add a MovieClip as a holder only on that frame. The holder clip only exists on that frame. Once you reach that frame you add the real clip to the holder display list using code:
holder.addChild(new special_clip())That way it will be removed when you change to another frame. It will however need to be re-created the next time you get to the frame.