public static void RemoveAllChildren(DisplayObjectContainer container) { while (container.numChildren > 0) { container.removeChildAt(0); } }