View Single Post
  #3 (permalink)  
Old 03-14-2007, 01:43 AM
spenland spenland is offline
WebProWorld Pro
 

Join Date: Jul 2004
Location: Irvine, CA
Posts: 120
spenland RepRank 0
Default

Sorry I'm using the progress bar component with the following code:

myProgressBarListener = new Object();
myProgressBarListener = function (eventObject) {
myProgressBar._visible = false;
gotoAndPlay("Start", 1);


// Close the above function
};
myProgressBar.addEventListener("complete", myProgressBarListener);
myProgressBar.mode = "polled";
myProgressBar.source = "_root";
myProgressBar.conversion = "1";
myProgressBar.label = "LOADING %3%%";
myProgressBar.direction = "right";
myProgressBar.labelPlacement = "bottom";
stop();

I got the code from this website:

http://www.tutorials-expert.com/tuto...s-Listing.html
Reply With Quote