nella scena preload nel primo fotogramma metti questo


stop()
this.onEnterFrame = function() {
carr = this.getBytesLoaded();
tott = this.getBytesTotal();
diff = int(carr/tott*100);
this.barra._xscale = diff;
this.testo.text=diff+"%"
if (carr == tott) {
delete this.onEnterFrame;
this.nextScene();
}
}


barra sarà la tua barra di preload
e testo il testo che visualizza la percentuale
NOMI ISTANZA INTENDO