barra che si carica a percentuale.
DOVE HO SBAGLIATO?

primo frame:

bytes_loaded = Math.round(this.getBytesLoaded());
bytes_total = Math.round(this.getBytesTotal());
getPercent = bytes_loaded/bytes_total;
this.load_bar._xscale = getPercent*100;
this.testo = Math.round(getPercent*100)+"%";
if (bytes_loaded == bytes_total) {
this.gotoAndPlay(3);
}

secondo frame
this.gotoAndPlay(1);

terzo frame
stop();



DOVE HO SBAGLIATO?