Código:
y ahora quiero remover todo el star_group del escenario como hago?counter = 1; while (counter<=200) { _root.attachMovie("star_group", "star"+counter, counter); set("star"+counter+"._y", 10+random(Stage.height-150)); set("star"+counter+"._x", 10+random(Stage.width-20)); star_scale = random(40)+10; set("star"+counter+"._xscale", star_scale); set("star"+counter+"._yscale", star_scale); set("star_color"+counter, new Color("star"+counter)); set("star_color"+counter+".setRGB", "0xFFCC00"); counter++; }
grx!