14/07/2003, 15:16
|
| | Fecha de Ingreso: junio-2003
Mensajes: 82
Antigüedad: 21 años, 4 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 |