Percentage preloader

hi,

icurrently have a preloader for my website which works by stretching the x value of a rectangle according to the percentage of the site loaded-very typical. I would instead like a movie clip to play a frame number corresponding to the percentage of website loaded ie. i would have a hundred frames. Is this possible?:ear:

I believe that all you would have to do is where the actionscript for the preloader is write

if(percent_loaded < 0 and > 2){
gotoAndStop(“1percent”);
}

and…

if(percent_loaded < 49 and > 51){
gotoAndStop(“50percent”);
}

just put as many of those you needed. just change the percent_loaded to what ever your loading number variable is, and it should work…if not, I’ll work on something.