una cosa del genere..
codice:
function preloadFOTO() {
	car = imgEsterne.getBytesLoaded();
	tot = imgEsterne.getBytesTotal();
	perc = Math.round((car*100)/tot);
	loading.text = "Loading... " + perc + "%";
	if (car>1024) {
		if (car == tot && _root.imgEsterne._width > 0) {
			imgEsterne._x = 5;
			imgEsterne._y = 5;
			loading.text = "";
			clearInterval(a);
			b = setInterval(fade_IN,50);
		}
	}
}