ciao, se imposto la pubblicazione dell'swf con AS2 questo script:
codice:
car = _root.getBytesLoaded(); 
tot = _root.getBytesTotal(); 
perc = parseInt((car*100)/tot); 
perc2=Math.round(perc/8)*8; 
progres = perc2 + "%";
if(car==tot){
gotoAndPlay(3);
}
il debug mi dice che l'è un errore qui:
perc = parseInt((car*100)/tot);
"Tipo non corrispondente"
Perchè?