Another preloading issue

hey all,

i’m having yet another preloader issue. I have a website in development http://www.theolddublin.com
If you go there, you will see a window with a loader at the bottom that says welcome to the old dublin. When anything is loaded into the window, the preloader should xscale…but it doesn’t. here is the as i’m using in my first frame of the root movie.

_root.createEmptyMovieClip(“filler”,“2”);
filler._x = 174;
filler._y = 72;
this.onEnterFrame = function() {
filesize = filler.getBytesTotal();
loaded = filler.getBytesLoaded();
if (loaded != filesize) {
_level5.loadingmovel.loaderbar.sliderbar._xscale = 100*loaded/filesize;

}
};
_root.attachMovie(“loadingmove”,“loadingmovel”,5);
loadingmovel._x = 339;
loadingmovel._y = 534.5;
what is interesting is that if i take out the sliderbar from the as, the sliderbar loaderbar disappears, rather than xscale. Anyone have any suggestions??
Thanks!