¿Eres nuevo? ¡Lee el FAQ y ponte al día!
187 visitas

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.     removeChildrenAt(0);
  3.  

­

Etiquetas: ActionScript 3.0 flash

Insertar: