questo esempio prevede tu abbia una mc che ti fa da contenitore chiamata carica in cui carichi il filmato sfondo.swf.
sullo stage devi mettere un testo dinamico chiamato stato

function preload() {
car = carica.getBytesLoaded();
tot = carica.getBytesTotal();
perc = Math.round((car / tot) * 100);
stato.text = "Loading . . . " + perc + "%";
if (car == tot) {
gotoAndStop(2);
clearInterval(a);
stato.text='';
}
}
carica.loadMovie ("sfondo.swf");
a = setInterval(preload, 100);