Pre loader problem

Hi everyone, I have a problem with my preloader.

The thing is that I want a bar to grow when the movie is loading. I already made the percent count work, but the bar doesn´t work. I will post the code here, if anyone would like the source file, ask me.

Thanks a lot.

stop();
//
Barra.onLoad = function() {
this._xscale = 0;
};
//
this.onEnterFrame = function() {
porcentaje = Math.round((getBytesLoaded()/getBytesTotal())*100);
loadtext = porcentaje+" %";
Barra._xscale = porcentaje;
//
if (porcentaje == 100) {
gotoAndPlay(“Scene 1”,“Residencial”);
}
};