modificalo così:

codice:
function preload() {
car = _level3.getBytesLoaded();
tot = _level3.getBytesTotal();
perc = Math.round((car*100)/tot);
loading.text = "Loading... " + perc + "%";
if (car >= tot) {
loadMovieNum("top.swf", 3);
clearInterval(caricamento);
//azioni per mandare in play il filmato
}
}
caricamento = setInterval(preload, 10);
:bubu: