10/02/2006, 17:29
|
| | | Fecha de Ingreso: octubre-2005 Ubicación: Barcelona, España
Mensajes: 843
Antigüedad: 19 años, 1 mes 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? |