prova a mettere un etichetta al primo frame della scena 2 e il preload lo fai così
codice:
car = _root.getBytesLoaded();
tot = _root.getBytesTotal();
perc = Math.round((car/tot)*100);
_root.createTextField("testo", 1, (this._width/2), (this._height/2), 200, 20);
_root.testo.wordWrap = true;
testoformat = new TextFormat();
testoformat.color = "0x123466";
testoformat.font = "Verdana";
_root.testo.setTextFormat(testoformat);
if(!isNaN(perc)) {
_root.testo.text = "Caricamento..."+perc+"%";
_root.testo.setTextFormat(testoformat);
}
if (car == tot && car > 1024) {
_root.gotoAndPlay("etichetta");
}
};