Perdonate l'ignoranza, ma è possibile modificare la stringa di codice, affinchè il preloader cessi quando una certa percentuale dei bytes totali è stato caricato, anzichè il 100% come accade ora.
Il codice del preloader è:
//--------------inizio
bytes_loaded = Math.round
(this.getBytesLoaded());
bytes_total = Math.round
(this.getBytesTotal());
getPercent = bytes_loaded/bytes_total;
this.loadBar._width = getPercent*100;
this.loadText = Math.round
(getPercent*100)+"%";
if (bytes_loaded == bytes_total) {
this.gotoAndPlay(3);
}
//---------------fine
grazie