Question : Flash preloader with numbers going backwards

Hi,
Does anyone know how i can have a flash preloader where the % numbers go down instead of up.
Eg. from 100 down to 0 instead of from 0 up to 100

Also if possible i want to be able to choose what number it starts at and what number it finishes at.
Eg. start at 1206 and go down to 305 and finish there.

Thanks

Answer : Flash preloader with numbers going backwards

It's OK,
I managed to get it to happen..
I wanted the script to go from 2230 down to 19
here is the code:

bytes_loaded = Math.round(this.getBytesLoaded());
bytes_total = Math.round(this.getBytesTotal());
getPercent = bytes_loaded/bytes_total;
this.loadText = 2230-Math.round(getPercent*2211);//counts down from 100
trace(this.loadText)
if (bytes_loaded == bytes_total) {
      this.gotoAndPlay(3);
}
Random Solutions  
 
programming4us programming4us