Ver Mensaje Individual
  #2 (permalink)  
Antiguo 01/02/2008, 07:44
Victor_J
 
Fecha de Ingreso: enero-2002
Ubicación: Lima
Mensajes: 50
Antigüedad: 22 años, 3 meses
Puntos: 0
Re: Eliminar MovieClip

has probado con _root?



function crear () {

for(i=0; i<3; i++) {
_root.attachMovie("electronSymbol", "electron_mc"+i, _root.getNextHighestDepth(),{_y:Math.random()*Stag e.height, _x:Math.random()*Stage.width});
}
}

function borrar () {

for(i=0; i<3; i++) {
_root["electron_mc0"].removeMovieClip();
}
}

crear_btn.onRelease=crear;
borrar_btn.onRelease=borrar;