1k views

Remove all children from a Sprite, MovieClip or DisplayObject

This the easiest way to delete all children from an object in flash:

ActionScript 3
  1. while(numChildren > 0)
  2.     removeChildAt(0);
  3.  

­

Tags: ActionScript 3.0 flash

Embed: