Preloader Adjustment

Hello,

[FONT=Calibri, Verdana, Helvetica, Arial]I just launched my new website (I am a graphic designer) and I used a pre-existing flash pre-loader on my home page that was created for me from another project. The loading bar used to be shorter but I stretched it out to be wider. The problem is that now the actual progress bar does not go all the way across to 100%. I’m pretty sure it’s just a number change that needs to be done somewhere in the code – I just don’t know where.

If at all possible I would greatly appreciate it if you could point me in the right direction:)[/FONT]

[FONT=Calibri, Verdana, Helvetica, Arial]Here is the pre-loader I’m talking about – [COLOR=#0000ff]http://www.vojodesign.com
[/COLOR]
Here is my script:[/FONT]

import fl.transitions.TweenEvent;
import flash.utils.getDefinitionByName;
import flash.events.Event;
import flash.net.navigateToURL;
import flash.net.URLRequest;

var links_list:Array=[“index.php?option=com_content&view=article&id=37&Itemid=14”,
“index.php?option=com_content&view=article&id=38&Itemid=9”,
“index.php?option=com_content&view=article&id=17&Itemid=10”,
“index.php?option=com_content&view=article&id=37&Itemid=11”];

this.StartPreloading();
function StartPreloading(){
this.addEventListener(Event.ENTER_FRAME,this.onPreloaderEnterFrame);
this.SetProgress(0);
}
function onPreloaderEnterFrame(ev:Event){
var clip_total=this.loaderInfo.bytesTotal;
var clip_loaded=this.loaderInfo.bytesLoaded;
var clip_progr=clip_loaded/clip_total;
var progr=clip_progr;
this.SetProgress(progr);
if(progr>=1){
this.removeEventListener(Event.ENTER_FRAME,this.onPreloaderEnterFrame);
this.gotoAndPlay(“go”);
}
}
function SetProgress(val:Number){
this.Preloader_mc.Text_txt.text=Math.round(val*100);
this.Preloader_mc.Bar_mc.Progress_mc.Line_mc.scaleX=val;
}

var current_tab:int=0;
var current_slide=null;

function SetupButtons(){
for(var i=0;i<5;i++){
var button=this.Buttons_mc.getChildByName(“bn”+i);
button.AddListener(String(i),this.onMenuButton);
if(i==this.current_tab) button.is_selected=true;
}
}
function onMenuButton(cmd:String){
var button=this.Buttons_mc.getChildByName(“bn”+this.current_tab);
button.is_selected=false;
button=this.Buttons_mc.getChildByName(“bn”+cmd);
button.is_selected=true;
this.current_tab=int(cmd);
this.SwitchToSlide();
}
function SwitchToSlide(){
var class_ref:Class=getDefinitionByName(“slide”+String(this.current_tab)) as Class;
var slide=new class_ref();
slide.predecessor=this.current_slide;
if(this.current_tab>0){
slide.link=this.links_list[this.current_tab-1];
}
this.addChild(slide);
this.current_slide=slide;
this.current_slide.Reveal();
}
function onSlideShown(ev:TweenEvent){
}[FONT=Calibri, Verdana, Helvetica, Arial]

Thanks in advance.[/FONT]