Is there any function in AS 3.0 that plays a MovieClip and then does removeChild() after it has been played? I don“t want to stop() it i just want to remove the child from stage.

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

As a code example, suggested by Sr.Richie, here is what is required:

Inside the MC to play and remove, add this frame code:

addEventListener(Event.ENTER_FRAME, function (e:Event):void {
   if(currentFrame==totalFrames) {
      removeEventListener(Event.ENTER_FRAME, arguments.callee);
      parent.removeChild(this);     
   }
}

Note I haven't tested this code, but it's the general idea.

link|improve this answer
awesome, i get it thanks! – ershin69 Jan 31 at 16:06
feedback

No, there's no built-in method to do it.

But you can let your objects extend MovieClip, and create a custom method triggered by an ENTER_FRAME event to check if the last frame is reached, and remove them from the parent then

link|improve this answer
Ok thanks, i'll find another way then. – ershin69 Jan 27 at 16:23
1  
read my edit, it could help – Sr.Richie Jan 27 at 16:24
yeah thanks! i manage to make something like this for it to work, at this point i don't remember what my problem was, but again thanks a lot! – ershin69 Jan 31 at 16:05
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.