Al movieclip della barra associ lo script:
codice:
onClipEvent(enterFrame){
	this._xscale += (this.endScale - this._xscale) / 5;
}
e cambi il codice del preloader in:
codice:
if (_framesloaded > 0 && _framesloaded == _totalframes) {
	gotoAndPlay("Scena 1", 1);
} else {
	if (_root.getBytesLoaded() == _root.getBytesTotal()) {
		_root.nextFrame();
	}
	_visible = true;
	perc = barra.endScale = Math.round((_root.getBytesLoaded() / _root.getBytesTotal()) * 100);
	percentuale = perc;
	numero._x = barra._x + barra._width;
}