In case Flash no longer exists; a copy of this site is included in the Flashpoint archive's "ultimate" collection.

Dead Code Preservation :: Archived AS3 works from wonderfl.net

forked from: 名前がわからない子をremoveChildしたい

addChildしたものをremoveChildしたいのですが
名前がわからないときはどうすればいいんでしょうか?
Get Adobe Flash player
by narutohyper 31 Jul 2010
    Embed
// forked from undo's 名前がわからない子をremoveChildしたい
//addChildしたものをremoveChildしたいのですが
//名前がわからないときはどうすればいいんでしょうか?

package {
    import flash.display.Sprite;
    public class FlashTest extends Sprite {
        public function FlashTest() {
            // write as3 code here..
            for(var i:int = 0; i < 10; i++)
            {
                var s:Sprite = this.addChild(new Sprite()) as Sprite;
            }

            //消したい!
            for(i = 0; i < 10; i++)
            {
                //this.removeChild(??名前がわからない!><);
                //どうしよう〜
                //消すだけなら0番目を10回消せばOK
                this.removeChildAt(0);                
            }

        }
    }
}