Ver Mensaje Individual
  #4 (permalink)  
Antiguo 14/07/2003, 15:16
maggiolo
 
Fecha de Ingreso: junio-2003
Mensajes: 82
Antigüedad: 20 años, 10 meses
Puntos: 0
seria algo asi?

onClipEvent (load) {
b_total = _root.getBytesTotal();
}
onClipEvent (enterFrame) {
b_loaded = _root.getBytesLoaded();
if (b_loaded>=b_total) {
_root.gotoAndPlay("inicio");
} else {
porcentaje = (b_loaded/b_total)*100;
barra2._xscale = porcentaje;
output = Math.floor(porcentaje)+"% cargado";
}
}
o no?


maggiolo