Tracking Forums, Newsgroups, Maling Lists
Home Scripts Tutorials Tracker Forums
  Advanced Search
  HOME    TRACKER    Flash




Progress Bar Problems, HELP



I am using Flash MX 2004. I am making a simple mp3 player for a friends website. It has two buttons, a play and a stop, that plays a single mp3. it also has a progress bar which tracks the playback of the song. I works great, but I have run into one problem that I have spent hours trying to fix. If the song is stopped, the status of the player stops where the song did. But if I push play, the song starts over from the start, but the progress bar does not, it just keeps on moving from the position that it last stopped on. How do I get the progress bar movie to restart as well. Here is the code that I have so far. I would be greatful for any sugestions, If this topic has already been covered, please forgive me, and point me in the right direction.

Thank you.

code:
var song01:Sound = new Sound();
progressBar01_mc.onEnterFrame = function() {
var progressAmount = Math.round(((song01.position / song01.duration) * 100));
this.gotoAndStop (progressAmount);
}

Also here are the scripts for my two buttons. I have two other players on the same page so thats why I have two stops.
code:
on(Release) {
song02.stop();
song03.stop();
song01.loadSound("music/Assassins Cry.mp3", true);
}

code:
on(Release) {
song01.stop();
}



FlashKit > Flash Help > Flash ActionScript
Posted on: 02-12-2005, 04:01 AM


View Complete Forum Thread with Replies

See Related Forum Messages: Follow the Links Below to View Complete Thread

Progress Bar For Showing Progress Of Loading Data From A CFC?
Hi all,

I wondered if anyone knew any way of showing a progress bar when calling a CFC through actionscript? I have a CFC which returns a ton of data, and so would like to show the progress of the data being loaded.

I know you can do this when loading a webpage, through using URLLoader, and getting the progress by listening to the ProgressEvent.PROGRESS event. However, when I call the CFC, I don't use the URLLoader class. My code for calling the CFC service looks like below


Code:
var service : RemoteObject = RemoteObject( ServiceLocator.getInstance().getService( "productService" ) );
var responder : GenericResponder = this.initResponder( getProductOptionListResult, getProductOptionListFault, resultHandle, faultHandle );
var call : AsyncToken = service.findOptionsForProduct( product );
thanks in advance for your help!

Mark

AS3 - Coding A Progress Bar To Show Progress Of A Timer.
Coding a progress bar to show progress of a Timer.

I have a timer that is set for (8000, 0). Pretty much what I would like to do is show the progress of where the timer is at but with a graphic. Something simple like a loader bar. Pending on where the timer is at the progress bar would load accordingly.

I am going to give it a try with out help but thought I would ask on the forum incase someone has an idea of how to do this before I go on a wild goose chase. Anyhow here goes the chase. If I figre it out before someone can help me I will post my code here.

Thanks,
Artofacks1

Progress Bar Not Showing Progress
Hi all

I have putted the code below in frame1, and then the actual movie in frame 2. The problem is that the code below doesn't show the progress unless i put the movie to start from say frame 5. Could someone please tell me why that is and any good progress bar code with percentage? I've actually tried a few tutorial sample and only this one works but need to move to higher frame no.

// stop the movie from continuing
stop();

// create a function called onEnterFrame
// with this name, it is an event handler
// and is called automatically by the flash
// player every frame at intervals specified
// by the frame rate of the movie
onEnterFrame = function(){

// percent loaded is loaded/total
var percent_loaded = _root.getBytesLoaded()/_root.getBytesTotal();

// assign percent loaded to preloader movie clip
// in the form of the variable named value
preloader_mc.value = percent_loaded;

if (percent_loaded == 1){

// delete the onEnterFrame event handler
// so that it is no longer being called
// every frame
delete onEnterFrame;

// tell the main timeline to play
play();
//gotoAndPlay(12);
}
}

Progress Bar
how can i do one?

Progress Bar
can anyone tell me how to create a simple preloader progress bar please

Progress Bar
hi,

I tried changing the color of the progress bar in the conponents... for some reason while it is in the library it is the color that i changed it to... but when i put it on the stage it is the default color.

What am i doing wrong?

Thanks!

Seth

Progress Bar Help
hey- I'm having trouble with a progress bar

im working on a fight club animation, and im not using very much actionscript. I needed to make a loading bar, and it seems to stick at 11% (at least on my computer). Also, the text saying what % it is at is not good quality. I find that it is good quality if i set it to static text, but then i obviously can't get it to change along with the bar. anyway.

Here is everything you would need to know.

The names of the Objects -

1. "Bar". the name of the semi-orange bar that should creep across (Graphic)
2. "Loader". the name of the movie (movie)

The Scripting i have set to "Loader"



onClipEvent (load) {
perc = Math.round((_parent.getBytesLoaded()/_parent.getBytesTotal())*100);
xperc = perc/100;
barlength = 364.9;
if ((perc == 100) and (bar._width == barlength)) {
_parent.gotoAndPlay(2);
} else {
nperc = perc+"%";
bar._width = barlength*xperc;
bar._x = -100+(bar._width/2);
}
}
onClipEvent (load) {
if ((perc == 100) and (bar._width == barlength)) {
_parent.gotoAndPlay(2);
// checks the percentage of the movie that is
// loaded. If the movie is fully loaded it tells
// the main timeline to goto frame 2 and play.
// It also checks to make sure that the loading bar
// has made it all the way across.
} else {
nperc = perc+"%";
// gives a percentage readout in the text box you created.
bar._width = barlength*xperc;
// makes the bar grow.
bar._x = -100+(bar._width/2);
// keeps the bar in place.
}
}



i copied and pasted this off of a tutorial, still not completely understanding it. I am sure the problem is within that. The only thing i changed was the barlength (4th line) from 200 to 364.9.

when the loading finishes, it should say "done" for a few frames, fade out, and cut to the movie. i know how to do this.

check out whats happening with it at
www.geocities.com/skifreak05

then click on "go here for fight club"

Progress Bar
I want to make a load bar, that loads from down to up inside of
a shape of an ink bottle.

Progress Bar?
hey guys i'm new here ^_^ and i'm kinda new in flash animations...\
can somebody help me? how do i make a fake progress bar? ok so here how it goes... when i click a button the progress bar loads up and goes to the next frame

Progress Bar
hi,

can s.b. tell me how to add a progress bar into a video in flash mx? i mean the video progress bar not the loading one.
i mean i can insert it into the video, but it doesn't work. it doesn't go on and stays by 0.00 sek...

thx!

Dorian

Progress Bar
I'm using the Progress Bar component to load a jpeg into a loader component. I've gotten this to work fine. Except that I'm not quite sure how to make the progress bar component disappear once the it has finished loading the jpeg. Does anyone know how to do this? Thanks.

-Jay

Progress Bar
I have a swf file that loads on my web page. I would like to have a progress bar that tells the user how much more they need to download.

Can anyone help?

Progress Bar
I have no idea or nor do i understand how to make a progress bar for my movie. Can anybody make this as simple as possible? Or have an easier toturial with step by step pictures and instructions lol. Im sorry but i need someone to hold my hand on this one. Thanx

Progress Bar
What are the step by step on using the progressbar in Flash 2004? I am new at that component.

Thanks

Progress Bar - How To ?
I Have a `2 MB fullscreen(fscommand) SWF clip` that I`d like to monitor it`s upload progress for the surfer so he knows how long to wait until it loads.
I just can`t manage it.
Tried reading and rereading the Help files - to no avail.
Please , Dear helpers : How do I load a fullscreen(fscommand) with a progress bar to monitor it`s upload pace ?
Thanks heartily in advance

Progress Bar
Hi, I am new to Flash MX 2004 having just upgraded from Flash 4 (I know this may seem weird to some but I am an artist using Flash not a programmer). I have been looking for a simple tutorial about displaying a progress bar when loading my swfs. I am only familiar with the Flash 4 "If frame is loaded" script. Can anyone please help. I have spent several hours on this site searching and reading previous board messages and not got anywhere yet.
Thanks
JayDuke

Progress Bar
does anyone know how to i sent the progress bar back to 0% after its reached 100%?

Progress Bar
i can't seem to find any good progress bar tutorials i know i could use the components one but i want to make my own.

[F8] Progress Bar
I have a slide presentation...I am running it through a projector...I need a progress bar because it is sluggish when first loading...what would be the best way to do this...thanks!

Progress Bar
How would I place a simple gray loading progress bar into my swf file:

http://66.221.32.78/tony.html

imagine that page would be larger to load. say 1mb, can't you put a movie clip with some script on the first keyframe and then it loads your page? I looked at lynda.com and it just talks about making a preloader file that calls up a swf file to go into the container, can't get it to work is there a better way?

Progress Bar
I am trying to load an external file into a preloader, however i can't get the preloader bar to move at all. The external .swf gets loaded fine and in the correct amount of time. I have a ProgressBar called 'pBar' and a Loader called 'loader'. Here is the loading code:

loader.autoLoad = false;

loader.contentPath = "film4.swf";
loader.content._lockroot = true;

pBar.label = "%1 out of %2 loaded (%3%%)";
pBar.source = loader;
pBar.mode = "polled";

pBar.setStyle("themeColor", "0x000000");
pBar.setStyle("color", "0x000000");

loader.load();

why can't i get the loader bar to move?? Please help!!! cheers.

XML Progress Bar
Hi,

I'm using thois script to preload a XML file and the progress bar shows up and doesn't work until after published the second time in the flash again. What should I do I'm a newby. Thanks


Code:
var barWidth:Number = 200;
var barHeight:Number = 5;

this.createEmptyMovieClip("pBar_mc", 9999);
var bar:MovieClip = pBar_mc.createEmptyMovieClip("bar_mc", _level17);
bar.beginFill(0xC9DA2A,100);
bar.moveTo(0, 0);
bar.lineTo(barWidth, 0);
bar.lineTo(barWidth, barHeight);
bar.lineTo(0, barHeight);
bar.lineTo(0, 0);
bar.endFill();
bar._xscale = 0;

var stroke:MovieClip = pBar_mc.createEmptyMovieClip("stroke_mc", 20);
stroke.lineStyle(0, 0xFFFFFF);
stroke.moveTo(0, 0);
stroke.lineTo(barWidth, 0);
stroke.lineTo(barWidth, barHeight);
stroke.lineTo(0, barHeight);
stroke.lineTo(0, 0);

pBar_mc.createTextField("label_txt", 30, 0, barHeight, 100, 21);
pBar_mc.label_txt.autoSize = "left";
pBar_mc.label_txt.selectable = false;

pBar_mc._x = (Stage.width - pBar_mc._width) / 2;
pBar_mc._y = (Stage.height - pBar_mc._height) / 2;

var my_xml:XML = new XML();
my_xml.ignoreWhite = true;
my_xml.onLoad = function(success:Boolean) {
pBar_mc.onEnterFrame = undefined;
if (success) {
trace("XML loaded successfully");
} else {
trace("Unable to load XML");
}
};

my_xml.load("icons.xml");
//xml.load("icons.xml");

pBar_mc.onEnterFrame = function() {
var pctLoaded:Number = Math.floor(my_xml.getBytesLoaded() / my_xml.getBytesTotal() * 100);
if (!isNaN(pctLoaded)) {
pBar_mc.bar_mc._xscale = pctLoaded;
pBar_mc.label_txt.text = pctLoaded + "% loaded";
if (pctLoaded >= 100) {
pBar_mc.onEnterFrame = undefined;
}
}
};

Progress Bar
hi guys,
im using flash mx.
ive designed an interactive flash exe that runs on a cdrom. i have create some bttons so when the user clicks on each of them they open another flash swf file (which conatins large movie clips) using the load movie method.

the problem is, the swf file which have the movies take a lot of time to load from the cd. can some one tell me how to add a progressbar so the user wont get confused while the movie is being loaded.

[MX] Progress Bar
I have this progress bar thats one frame and everything has instance names. This code is on the frame itself. But when I preview it doesn't load anything

Code:
loader.contentPath = "http://www.hotlinkfiles.com/files/1415773_lsbug/webintro.swf";
pBar.source = loader;

Progress Bar
hello friends,

i am trying to create a progress bar in a movie. in that particular file i am playing three external swf files. but i want the progress bar to be interactive and can play the movie when ever it is draged and released on a particular place.

plz help me.
thanks and regards

Progress Bar Help
Hello

I followed Lee Brimelow's tutorial on creating a scrub progress bar.

When i test the movie the flv begins playing but the scrubber movie clip shoots away from the loader bar I created onto the 0 coordinate. I figured the script i used acknoledges the 0 coordinate as the start for the scrub movie clip.

How do i make it so that the scrubber movie clip starts at X= 243.2, which is the location of the start of my loader movie clip.

Here is my script.


Code:

//video

var nc:NetConnection = new NetConnection();
nc.connect(null);

var ns:NetStream = new NetStream(nc);

//buffer

ns.setBufferTime(15);

ns.onStatus = function(info) {
if(info.code == "NetStream.Buffer.Full") {
bufferClip._visible = false;
}
if(info.code == "NetStream.Buffer.Empty") {
bufferClip._visible = true;
}
if(info.code == "NetStream.Play.Stop") {
ns.seek(0);
}
}


trailer.attachVideo(ns);


rewind_btn.onRelease = function() {
ns.seek(0);
}

play_btn.onRelease = function() {
ns.pause();
}

var videoInteval = setInterval(videoStatus,100);
var amountLoaded:Number;
var duration:Number;

ns["onMetaData"] = function(obj) {
duration = obj.duration;
}

function videoStatus() {
amountLoaded = ns.bytesLoaded / ns.bytesTotal;
loader.loadbar._width = amountLoaded * 243.2;
loader.scrub._x = ns.time / duration * 243.2;
}

MP3 Progress Bar
Hi, I'm trying to get this progress bar "sndbarMC" to show in this MP3 player and no luck. Any ideas??

Thanks!
KingKahuna


Code:
mySnd = new Sound();
sndbarMC._visible = false;
mySnd.onLoad = function() {
totalseconds = Math.floor(mySnd.duration/1000);
totaltime = Math.floor(totalseconds/60)+":"+totalseconds%60;
sndbarMC._visible = true;
};
mySnd.loadSound("moment1-clip.mp3", true);
volume = 100;
pause = 0;
pauseoverBTN._visible = false;
function f1() {
buffered = Math.floor((mySnd.getBytesLoaded()/mySnd.getBytesTotal())*100);
if (buffered<100) {
totaltime = buffered;
totaltime = totaltime+"%";
}
sndbarMC._xscale = (mySnd.position/mySnd.duration)*100;
playedseconds = Math.floor(mySnd.position/1000);
playedtime = Math.floor(playedseconds/60)+":"+playedseconds%60;
if (action == "stop") {
sndbarMC._xscale = 0;
}
if (pause == 1) {
pausepos = mySnd.position;
mySnd.stop();
pauseoverBTN._visible = true;
}
}
setInterval(f1, 100);
stop();

Progress Bar
I have two movies connected together i want that while a second movie is being loaded a sort of progress bas should appear indicating the percentage done of that sort . how can this be done

Progress Bar
Hi
I would like to use a progress bar component to show the amount of time left before the next scene is shown. I would like it to count up to 7 seconds, then switch to the next slide. I would also like to be able to pause this action and resume it.

Progress Bar Help
i created a progress bar for a school project but it doesnt seem to be working, i tried and made a nice slik bar with my name on top which fades in and out all the time and the percentage at the bottom. but it doesnt seem to work when i try it and how do you attach it to the html file, like show the flash and then the website comes?

sorry for my bad english and this is my first post

i have also included the .fla file for people who are extremely helpful

http://www.sendspace.com/file/dcys9y





























Edited: 08/07/2007 at 02:06:10 PM by Ahmed_7

Progress Bar - Please Help
Hi there,
I have desperately trying to solve a problem with a progress bar in my animation. I have got a button on my progress bar which shows at what stage the animation is. I would like to have the button controlling the animation in the way that I could drag it to any place on progress bar and the animation would move to this place. I am attaching the source code, so I hope it would be much clearer then. The link to download source code: http://www.sendspace.com/file/st7dlx
I would highly appreciate any advice and would be happy for any help.
Thanks a lot in advance.
Tomas

Progress Bar
I can not figure out how to make a progress bar like the kind between pages when the second one is loading . I have tried what i think will work but to no avail

I am new at flash

Thxs Steve

Progress Bar?
Hi There,
I have a graphic saved as a movie clip which I'd like to convert to a progress bar component (or at least to act like a progress bar component) . . . how is this done? Is it even possible?
Any help would be greatly appreciated!
Thanks,
Kevin.

Help With Progress Bar
Hi --

I am using the Progress Bar component to build a simple preloader and noticed while simulating downloads at slower speeds that it does not show up until the movie is about 95% loaded. I have attached my code below... why does this occur? How can I get it to pop up right away so that the user does not close down my page? Thanks in advance.









Attach Code

myProgressBarListener = function (eventObject) {
myProgressBar._visible = false;
gotoAndStop(2);
};
myProgressBar.addEventListener("complete", myProgressBarListener);
myProgressBar.mode = "polled";
myProgressBar.source = "_root";
myProgressBar.conversion = "1";
myProgressBar.label = "LOADING %3%%";
myProgressBar.direction = "right";
myProgressBar.labelPlacement = "bottom";
myProgressBar.setStyle("themeColor",0x000000);
stop();

Progress Bar Fl Cs3 As3.0
below is my very simple code to load images from a instance of button component into an instance of UIloader component.

there are multiple buttons like this one

i can't get it... the way to get progress bar to listen and respond to the loading of the image


img_02_btn.addEventListener(MouseEvent.CLICK, onClick2);
function onClick2(event:MouseEvent):void
{
trace("typeMe");
loaderOne.source = "assets/b300.png";
loaderOne.load();

}

Progress Bar
How do I add a progress bar to a flash? And is it necessary to make a progress bar? because sometimes when i play a flash game thats really large (file size) sometimes the flash window is just a blank white screen. is that because the flash game is loading?
If that's true than can someone tell me how to make one, that's accurate to how much is loaded?

Progress Bar - Please HELP
Listed is the code for my progress bar... I keep getting an error message when I go to test the movie, it reads...

Error opening URL "file:///C|/Documents%20and%20Settings/Mark/Desktop/data05.swf"
**Error** Symbol=preloader, layer=background, frame=1:Line 6: Syntax error.
_parent.bytes = int(isloaded/1000) add " KB of " add int(total/1000) add " KB";

**Error** Symbol=preloader, layer=background, frame=1:Line 7: Syntax error.
_parent.percent = int(p) add "% LOADED";

I don't know what I'm doing wrong... Any help is greatly appreciated! Also, my preloader used to go straight into the main movie and now when I test the entire movie it requires me to right click to "play" the movie. ?!?!?!?!







Attach Code

onClipEvent (enterFrame) {
if (_parent.doneLoading == 0) {
total = _parent._parent.getBytesTotal();
isloaded = _parent._parent.getBytesLoaded();
p = 100*(isLoaded/total);
_parent.bytes = int(isloaded/1000) add " KB of " add int(total/1000) add " KB";
_parent.percent = int(p) add "% LOADED";
_parent.bar._xscale = p;
if (Number(p)>Number(99)) {
_parent._parent.gotoAndPlay(Number(2));
_parent.gotoAndStop("off");
_parent.doneLoading = 1;
} else {
_parent._parent.gotoAndPlay(Number(1));
}
}
}

Help With Progress Bar
Hi, All . . .

I'm about at my wits end. I created a slide show that I did not at first expect would need a "Loading" progress bar. Now that we're in the testing phase, there is enough of a lag to warrant one. I have utilized the Help files, consulted a couple of books I have, searched through past posts on this forum, and googled the topic for for direction. I have, at this point, tried many different methods--too numerous to recount or remember right now--that have not worked. I don't think I mis-copied any of the various coding I've tried, and I don't know if there were steps omitted in the coding that I did not pick up on. So, I'm here to ask if anyone can help guide me through the process.

Thanks,

Chris

MC Progress Bar
Gentlefolk;

I want to create a progress bar that shows how far the movie has progressed. The movie is a fairly long call center simulation, and some of these are 2 mins., some are 10 mins. or so. So and idea of where the user is in viewing this illustration would be useful.

I am trying to crib from the Flash help file, and have come up with:

-------------------
var pctLoaded:Number = Math.round(mcMain._currentframe()/mcMain._totalframes()*100;
bar_mc._xscale = pctLoaded;
bar_mc._x = 0;
bar_mc._y = 500;

----------------

But that generates the following error:
--------------------
**Error** Scene=Scene 1, layer=action, frame=1:Line 63: ')' or ',' expected
var pctLoaded:Number = Math.round(mcMain._currentframe()/mcMain._totalframes()*100;

Total ActionScript Errors: 1 Reported Errors: 1
--------------

What am I doing wrong, and if that script above is debugged, will it create a progress bar that increments and decrements as the user works through the MC?

I will need to specify X-Y coordinates for the "bar_mc", but figure that is a simple:
bar_mc._x = 0;
bar_mc._y =500;

Thank you for any thoughts.

Don

Progress Bar?
Hi all. How does the mx 2004 v7.2 progress bar work. Ive just downloaded the new updates and everything is good. I have a scroll bar component (anyone that knows me will understand) yeah. Im trying to create the most basic of preloaders. The preloader is on scene1 and the main content is on scene 2, any suggestions

Mp3 Progress Bar
I have a simple .fla that loads an mp3 dynamically using this script:

on (release) {
mySound.loadSound("http://www.antoniomusic.com/audio/MusicIsBorn.mp3",true);
}


I need to create a progress bar preloader to play while the mp3 is being located and served. The tuts I've been finding have so many other features that at my current level I can't sort through the AS to get what I need. Does anyone know of a simple progress bar preloading script I can use on these mp3's?


TIA
Amelia

Progress
Following is exactly 25 line of code which can be used to signify the progress


i = 1;
j = 100;
_root.createEmptyMovieClip("bubble", i);
fdrawMovie(eval("_root.bubble"), 10, 100, 10, 2);
function fdrawMovie(ref, org_x, org_y, r, angle) {
j = eval(ref)._x=j+25;
eval(ref)._y = org_y;
with (ref) {
onEnterFrame = function () {
lineStyle(5, 0x6D6D36);
lineTo((newx+org_x), newy);
moveTo((newx+org_x), newy);
lineStyle(2, 0xFFFFFF);
lineTo((org_x-newx), newy);
moveTo((org_x-newx), newy);
newy = r*Math.cos(angle);
newx = Math.sqrt((r*r)-(newy*newy));
angle = angle+2;
if (angle>45) {
delete this.onEnterFrame;
_root.createEmptyMovieClip("bubble"+_root.i, ++_root.i);
_root.fdrawMovie(eval("_root.bubble"+_root.i), 10, 100, 10, 2);
}
};
}
}



i could have put the function to draw the line with x,y as the arguments ..but it was not making much differance for number of lines. as i had to draw only two types of lines..

looking forward for comments ....

Progress Bar
hello friends,

i am trying to create a progress bar in a movie. in that particular file i am playing three external swf files. but i want the progress bar to be interactive and can play the movie when ever it is draged and released on a particular place.

plz help me.
thanks and regards

Progress Bar
Hi all,

Just wondering if anyone could point me to some information or an example on implementing a progress bar in Flex?

I've dragged and dropped a progress bar onto my design and I was wondering how I could implement a timer or something similar showing the progress?

I'm writing a flex front-end for an installation program and I want to have a progress bar showing how much of the application they've downloaded and how much is left?
Or maybe how much time has elapsed and how much time is left! Something like that!

Any help would be greatly appreciated!
Thanks a mil in advance

Regards,
Derm

Progress Bar
Hi All,

I am new to flex.

I am trying to down load an image. while loading the image, i have to show progress bar to user. But i am getting both at a time.
My intention is first progress bar to show the downloading progress then image has to display.

my code is:

<?xml version="1.0"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">

<mx:Script>
<![CDATA[
public function initImage():void {
image1.load('E:/gr/Airtel Bill Pay.JPG');
}
]]>
</mx:Script>

<mx:VBox id="vbox0" width="600" height="600">
<mx:Canvas>
<mxrogressBar width="200" source="image1"/>
</mx:Canvas>
<mx:Button id="myButton" label="Show" click="initImage();"/>
<mx:Image height="600" width="600" id="image1" autoLoad="false" visible="true"/>
</mx:VBox>
</mx:Application>

Please give some solution.

Thanks in Adv

Progress Bar?
Hi all. How does the mx 2004 v7.2 progress bar work. Ive just downloaded the new updates and everything is good. I have a scroll bar component (anyone that knows me will understand) yeah. Im trying to create the most basic of preloaders. The preloader is on scene1 and the main content is on scene 2, any suggestions

Mp3 Progress Bar
I have a simple .fla that loads an mp3 dynamically using this script:

on (release) {
mySound.loadSound("http://www.antoniomusic.com/audio/MusicIsBorn.mp3",true);
}


I need to create a progress bar preloader to play while the mp3 is being located and served. The tuts I've been finding have so many other features that at my current level I can't sort through the AS to get what I need. Does anyone know of a simple progress bar preloading script I can use on these mp3's?


TIA
Amelia

Progress Bar
HELP???
If anyone could be so kind as to show me the way to make a load bar for a flash movie and/or fading buttons that keep fading even when another button i activated thanks

Progress Bar
Hi all can anyone tell me how I can nest a progress bar in an MC that is in my library instead as I have a long mc in my ligrary and at one point it needs to load an external swf into a loader when I put a progress bar it dont work,  but if I grab the 3 frames I am using which are progress bar AS, pregress bar and loader and put them in the main timeline they work can someone help???

Thanks in advance :)

W i K


Progress Bar
Can anyone tell me how to make a progressbar ?

Copyright © 2005-08 www.BigResource.com, All rights reserved