Ver Mensaje Individual
  #2 (permalink)  
Antiguo 10/02/2006, 17:29
Avatar de -=ArgoN=-
-=ArgoN=-
 
Fecha de Ingreso: octubre-2005
Ubicación: Barcelona, España
Mensajes: 843
Antigüedad: 18 años, 6 meses
Puntos: 1
Código:
stop();
image.loadMovie("images/1.jpg");
por = 0;
this.onEnterFrame = function() {
	if (por != 100) {
		por = Math.round((image.getBytesLoaded()/image.getBytesTotal())*100);
		por_txt.text = "Cargandos :"+(Math.round(image.getBytesLoaded()/1024))+" Kb de "+(Math.round(image.getBytesTotal()/1024))+" Kb "+por+" % terminado";
		stop();
	} else {
		this.unloadMovie();
		delete this.onEnterFrame;
		play();
	}
};
¿Sera eso?