Ver Mensaje Individual
  #4 (permalink)  
Antiguo 29/04/2005, 02:07
Avatar de orhko
orhko
 
Fecha de Ingreso: abril-2005
Mensajes: 92
Antigüedad: 19 años
Puntos: 0
Si quieres te pongo mi codigo y me dices si esta bien???ok????

onClipEvent (enterFrame) {
with (this._parent) {
porcentaje = Math.round((getBytesLoaded()/getBytesTotal())*100);
porcentaje_txt.text = "Cargando "+Math.round(getBytesTotal()/1024)+" Kb "+porcentaje+"%";
if(porcentaje == 100){
this._parent.gotoAndStop(_currentframe+1);
}
}
}