16/02/2011, 15:55
|
| | | Fecha de Ingreso: mayo-2007 Ubicación: { Dash Berlin }
Mensajes: 1.879
Antigüedad: 17 años, 5 meses Puntos: 67 | |
Respuesta: referencia a clip colocados con attachMovie Así: Cita: var clips:Array=new Array()
for (var i:Number = 0; i<10; i++) {
var nomR:MovieClip = _root.contenedor.attachMovie("imagen", "imagen"+i, _root.contenedor.getNextHighestDepth());
nomR._x=0
nomR._y=i*100
clips.push(nomR)
}
boton_mc.onRelease = function() {
for (var i:Number = 0; i<10; i++) {
trace(clips[i])
clips[i]._visible=false
}
};
__________________ { Flash } |