03/03/2008, 01:53
|
| | Fecha de Ingreso: febrero-2008
Mensajes: 26
Antigüedad: 16 años, 9 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(); |