01/02/2008, 07:44
|
| | Fecha de Ingreso: enero-2002 Ubicación: Lima
Mensajes: 50
Antigüedad: 23 años 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; |