05/08/2005, 10:01
|
| Moderador | | Fecha de Ingreso: julio-2003 Ubicación: Lima - Perú
Mensajes: 16.726
Antigüedad: 21 años, 4 meses Puntos: 406 | |
Sorry, cometí un error, el código debe de quedar así:
carga.loadMovie("imagen.jpg")
control._visible=false
control.onEnterFrame=function(){
var bl=carga.getBytesLoaded()
var bt=carga.getBytesTotal()
if (bl>=bt and bl>4){
delete this.onEnterFrame
this._visible=false
}else{
this._visible=true
this.barra._xscale=100*bl/bt
this.porciento.text=(bt>0)?(Math.floor(bl*100/bt)+"%"):"0%"
}
}
Espero haberte sido de ayuda. |