24/01/2005, 08:24
|
| | | Fecha de Ingreso: mayo-2003 Ubicación: DF
Mensajes: 574
Antigüedad: 21 años, 8 meses Puntos: 1 | |
simple. Utiliza setInterval.
Código:
var idMovieClips:Array = ["mc1", "mc2", "mc3"];
this.createEmptyMovieClip("contenedor", this.getNextHighestDepth());
var cargar = function():Void{
contenedor.attachMovie(idMovieClips[random(3)], "attachedMC", contenedor.getNextHighestDepth());
}
setInterval(cargar, 20000);
__________________ - P R I N C E -
Última edición por Prince; 24/01/2005 a las 08:26 |