Ho appena fatto come mi hai consigliato, ossia suddividendo in 2 scene...e il risultato e' il medesimo,il preload compare quando la barra carica il 65%....esatto alla virgola come prima...sigh!
Ti scrivo il codice da me inserito nella barra:
onClipEvent(load) {
// initialize variables
bytesLoaded = 0;
bytesTotal = _root.getBytesTotal();
}

onClipEvent(enterFrame) {
// if there is more to load
if (bytesLoaded < bytesTotal) {

// get current amount loaded
bytesLoaded = _root.getBytesLoaded();

// calculate percentage
percentLoaded = Math.round(100*bytesLoaded/bytesTotal);

// if there is still more
if (bytesLoaded < bytesTotal) {

// display text
displayText = "Loading: "+percentLoaded+"%";

// set scale of bar
barFill._xscale = percentLoaded;

// no more left
} else {

// display complete
displayText = "Loading Complete.";

// fill out bar
barFill._xscale = 100;

// go to next frame
_root.nextFrame();
}
}
}

E' vero che il mio filmato e' pesante...circa 187 kb, ma non capisco perche' la barra non compaia fino a circa 125Kb di caricamento!?!..
Grazie ancora per l'aiuto!..