codice:
function preload ()
{
	car = myLoadVars.getBytesLoaded();
	tot = myLoadVars.getBytesTotal();
	perc = Math.round((car*100)/tot);
	if (car > 1024 && tot > 0) {
		cf_load.caricamento.htmlText = ...
		if (car == tot ) {
			clearInterval(b);
		}
	}
}