09/11/2007, 06:29
|
| | Fecha de Ingreso: septiembre-2007
Mensajes: 104
Antigüedad: 17 años, 2 meses Puntos: 1 | |
Re: precarga de swf externo este codigo es mas simple funcionaria???:
barra_mc._xscale = 0;
this.onEnterFrame = function() {
carga = Math.round((getBytesLoaded()/getBytesTotal())*100);
if (carga == 100) {
loadMovie("pelicula.swf","_root");
delete this.onEnterFrame;
}
barra_mc._xscale = carga;
porcentaje.text = carga;
porcentaje._x = barra_mc._x+barra_mc._width;
}; |