Ver Mensaje Individual
  #3 (permalink)  
Antiguo 03/03/2008, 01:53
Magber68
 
Fecha de Ingreso: febrero-2008
Mensajes: 26
Antigüedad: 16 años, 2 meses
Puntos: 0
Re: Problema con preload

Gracias Corneja aqui teneis el codigo, a ver si ves el fallo:
function cargando(){
var total, cargados, porcentaje;
totalbytes = _root.getBytesTotal();
bytescargados = _root.getBytesLoaded();
porcentaje = Math.floor((bytescargados*100)/totalbytes);
carga.text = porcentaje + " %";
barra.gotoAndStop(porcentaje);
if (bytescargados == total) {
clearInterval(avance);
play();
}
}
var avance = setInterval(cargando, 1);
stop();