Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I create multiple MC's with the following code:

function addCharacter() {
    var newCharacter:characterBob = new characterBob();
    this.addChild(newCharacter);

    newCharacter.x=1000 - (50*counter);
    newCharacter.y=50;

    counter = counter + 1
}

Now i'd like to remove a bunch of them from the stage. Is there a way i can do this in AS3?

Thanks in advance for any advice.

share|improve this question

2 Answers

up vote 2 down vote accepted

You can try something like:

for each (var o:DisplayObject in this) {
    if (o is characterBob) {
        removeChild(o);
    }
}

Perhaps a better option would be to put each "characterBob" created into an array. Then loop through the array and remove each object.

var bobs:Array = new Array();

function addCharacter() {
    var newCharacter:characterBob = new characterBob();
    this.addChild(newCharacter);

    newCharacter.x=1000 - (50*counter);
    newCharacter.y=50;

    counter = counter + 1;

    bobs.push(newCharacter);
}

function removeAllBobs():void {
    while (bobs.length > 0) {
        removeChild(bobs.shift());
    }
}
share|improve this answer
Corey has the answer. To wipe an mc i sometimes do: while(this.numChildren) this.removeChildAt(0); – Jackson Aug 17 '11 at 1:37
How would i add each "characterBob" to the array? – Tom Rayne Aug 17 '11 at 2:03
Just create an array variable outside of your "addCharacter" function. Call it something like "bobs" like I did in my example. Then, in your "addCharacter" function, add something like bobs.push(newCharacter); – Corey Aug 17 '11 at 2:07
I just updated my answer as an example. – Corey Aug 17 '11 at 2:11
Thank you so much. It works exactly as i hoped. – Tom Rayne Aug 17 '11 at 2:15
show 1 more comment
while(myDisplayObjectContainer.numChildren > 0){
    myDisplayObjectContainer.removeChildAt(0);
}

That will remove all children of the specified DisplayObjectContainer (Sprite or Movieclip)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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