home *** CD-ROM | disk | FTP | other *** search
- totales1 = _root.getBytesTotal();
- leidos1 = _root.getBytesLoaded();
- if(totales1 >= leidos1)
- {
- e_barra1 = int(leidos1 * 100 / totales1);
- barra1.valor = e_barra1;
- with(barra1)
- {
- gotoAndStop(valor);
- }
- }
- if(leidos1 == totales1)
- {
- carga1 = 1;
- }
- barra1.muestra1 = int(leidos1 / 1000) + " de " + int(totales1 / 1000) + " Kb";
- barra1.muestra2 = "Estado: " + e_barra1 + " %";
- if(carga1 == 1)
- {
- gotoAndStop(4);
- }
- else
- {
- gotoAndPlay(2);
- }
-