I'm new on Flash, i don't know if it possible, but i'm adding a random movieclip to the stage, using addChild, and i need to remove them after 10 seconds...how can i do this using removeChild?

regards

link|improve this question

43% accept rate
feedback

2 Answers

up vote 0 down vote accepted

Or you can use the default function from flash library

setTimeOut()

More Info.

And at the end it would be looking like this:

setTimeOut ( removeClip, 2000, clip );

function removeClip ( clip : DisplayObject ) : void
{
    removeChild ( clip );
}        
link|improve this answer
feedback

Use the Timer class. Also the TweenLite library has a nice function called TweenLite.delayedCall(secondsDelay, functionToCall)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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