Ver Mensaje Individual
  #14 (permalink)  
Antiguo 07/04/2005, 03:44
Prone
 
Fecha de Ingreso: diciembre-2004
Mensajes: 53
Antigüedad: 19 años, 4 meses
Puntos: 0
no se

hice otra "version" pero tampoco se ve la barra ni el % (Estoy en flash 5)


stop();

this.createEmptyMovieClip("cargaMovie",8);
loadMovieNum("Rei y Newton.swf", 1);
cargaMovie.onEnterFrame=function(){
cargadoGen=_root.getBytesLoaded();
totalGen=_root.getBytesTotal();
porcentajeGen=Math.round((cargadoGen/totalGen)*100);
cargados = porcentajeGen add " % Cargado";
// Asegurarse que el stream ha comenzado
if (isNaN(totalGen) || totalGen<4) {
return;
}
if(cargadoGen>=totalGen) {
play();
delete cargaMovie.onEnterFrame;
}
else {

_root.barra._xscale = porcentajeGen;


}
};