allora.. ho inserito un preload e funziona abbastanza bene
solo non mi calcola esattamente il tempo che ci vuole per caricare il sito..
spesso arrivato a un 50% apre la pagina
lo script è questo sul primo fotogramma
// variables that sort out the numbers
// the important functions gete are getBytesLoaded() and getBytesTotal().
// Math.round just rounds the number up so that it doesn't have decimal figures
decLoaded = (_parent._parent.getBytesLoaded()/_parent._parent.getBytesTotal());
percLoaded = Math.round(decLoaded*100);
bytesLeft = (_parent._parent.getBytesTotal() - _parent._parent.getBytesLoaded());
// variables used for displaying numbers and the bar width
// add is used to combine integers (numbers) and strings (text) into one big string for display.
_parent.percent = percLoaded + "% loaded";
_parent.Kleft = (Math.round(bytesLeft/200)) + "K left";
_parent.bar._width = percLoaded*2;
------------e questo nel secondo fotogramma -----------
if(percLoaded != 100){
gotoAndPlay (_currentframe-1);
} else {
_parent._parent.play();
}
--------------------------------------------
il file swf pesa 566kb..
c'è qualche cosa dello script che devo cambiare per far in modo che funzioni correttamente?
grazie a tutti.. spero nel vostro aiuto..
in ogni caso buona serata =)

Rispondi quotando