Posts Tagged ‘ actionscript3 ’

simple way to removeChild all

Hi friends,

Mostly AS3 developers, make a dummy container to remove all child. In your particular class its not necessory by code.

while(holder.numChildren)
{
    holder.removeChildAt(0);
}