Ver Mensaje Individual
  #3 (permalink)  
Antiguo 14/03/2006, 05:30
Avatar de jerkan
jerkan
 
Fecha de Ingreso: septiembre-2005
Mensajes: 1.607
Antigüedad: 18 años, 7 meses
Puntos: 19
Bandit, he probado tu código y me carga bien un primer MC pero luego no carga un segundo. Posteo mi código por si tengo algo mal:
Código:
var banners = new Array("america.swf", "trazzo.swf");
function getRandomBanner() {
	var indice:Number = random(banners.length);
	return banners[indice];
}
this.createEmptyMovieClip("myClip", 1);

myClip.loadMovie(getRandomBanner());

myClip.onEnterFrame = function() {
	if (this._currentframe == this._totalframes && this._totalframes > 1) {
		this.loadMovie(getRandomBanner());
	}
};