Innanzitutto grazie.
Allora....
sulla mc(frame1) che racchiude tutti gli elementi dinamici ho questo script:
-------------------------------
onClipEvent (load) {
if (_root.getBytesTotal()<1000) {
unit = "bytes";
total = Math.floor(_root.getBytesTotal()) + unit;
} else if (_root.getBytesTotal()>1000000) {
unit = "mb";
total = Math.floor(_root.getBytesTotal() /1000000) + unit;
} else {
unit = "kb";
total = Math.floor(_root.getBytesTotal() /1000) + unit;
}
}
onClipEvent (enterFrame) {
percentuale = Math.floor( _root.getBytesLoaded()/_root.getBytesTotal()*100)+"%";
if (unit =="bytes") {
progress_fleche.parte = Math.floor(_root.getBytesLoaded()) + "bytes";
} else if (unit =="mb") {
risultati = _root.getBytesLoaded() /1000000;
risultati = Math.round(risultati*100);
risultati = risultati/100;
progress_fleche.parte = risultati + "mb";
} else {
progress_fleche.parte = Math.floor(_root.getBytesLoaded() /1000) + "kb";
}
}
onClipEvent (enterFrame) {
if (percentuale=="100%") {
_parent.gotoAndPlay("inizio");
}
}
----------------------------------------------------
La sopracitata mc è istanziata "preloader"
Invece sul frame 1 (all'interno del quale c'è l'mc "preloader") ho questo script:
-----------------------
fscommand("allowscale", "false");
stop();
-------------------

Spero basti.
grazie ancora,
Actarus.