Problem using a Flash MX 2004 Progress Bar Component within a Movieclip

I'm try to setup a progress bar to show the percentage loaded
of a mp3 audio file using the Flash MX 2004 Progress bar component.
I can get the progress bar to the work normally by the having the
component on the stage (not in a movie clip) with the component set
to:
mode: polled
source loader
with the following actionscript on the layer above:
pBar.setStyle("themeColor", 0xFF0000);
var loader:Object = new Sound();
loader.loadSound("http:/www.mywebsite.co.uk/mymp3.mp3",
true);
But I won't to put the preloader inside a Movie Clip (the
movie clip is called 'content_MC') as the website has alot of
content. When I do this the mp3 file still streams but the Progress
Bar doesn't work.
I think I just need to change the action script so that it
links with the component telling it to calculate the progress of
the audio streaming file.
Am I right? Where am I going wrong?

I found the problem!!
While exploring the Fireworks MX 2004 folder located under
"C:\Documents and Settings\USER\Application Data\Macromedia\"
folder I discovered that this folder was empty. So, I connected the
old hard drive and investigated the contents of the corresponding
folder on that drive. Discovering the wide assortment of files and
folders in that folder, I simply copied the contents of that folder
to the Fireworks MX 2004 folder and retried running the application
and IT WORKED!
Thanks for all your communications and in depth
troubleshooting steps, I will keep them in may Application
troubleshooting Tool Tips for future reference. I have included the
actions used here which brought about the successful resolution of
this issue so that if you'd like you might include them in any Help
Desk Methods you may have. It was truly a collaborative effort
because I would not have thought to explore the Application Data
folder to resolve this issue without you pointing me in that
direction.
Thanks again!

Similar Messages

  • Flash Player 9 and Progress Bar Component

    Can someone have a look at this:
    http://www.adobe.com/go/6a620259
    and tell me if there is any solution?
    Thanks in advance
    RC

    As of this date, iI still have not found a solution to this
    problem. In, general I have had bad experiences using the loader
    component in conjunction with the progress bar component. By itself
    the loader component works fine (loading movie clips, swf's, etc..)
    but I have found that if you want a truly reliable progress bar,
    you need to make your own. I would advise against using the one
    built into flash 8. Maybe eventually, adobe will get around to
    addressing the issue with some sort of workaround or update, but I
    think in the meantime, we are on our own (and will probably have to
    wait until Flash 9).
    If you figure anything out, please share your info with me
    and good luck hunting!
    -Pecktron2000

  • Question about plugging in an ajax progress bar component onto a black-box.

    Hello,
    I have the following problem: I want to integrate an ajax progress bar component to a j2ee application and I am in reference to the following pattern (https://bpcatalog.dev.java.net/nonav/ajax/progress-bar/design.html). It seems I need for the "task" component to return the percent. The problem I have is that I am calling a legacy method (i.e. as400) that does not return a percent as it is to me only a black-box. Here is a snippet of what it looks like to me:
          AS400 sys = new AS400("AS400D.calyonfinancial.com");
           sys.setUserId("jmartin");
           sys.setPassword("jmartin");
           CommandCall cmd = new CommandCall(sys);
           cmd.run("my as400 command goes here");
           AS400Message[] messageList = cmd.getMessageList();
           for (AS400Message msg : messageList) {
               System.out.println(msg.getText());      
           sys.disconnectService(AS400.COMMAND);At best I can know whether or not it is completed.
    void actionCompleted(ActionCompletedEvent event) //Invoked when an action has completed.What do you advise I do bearing in mind I want to avoid using an indeterminate progress bar??
    Thanks in advance,
    Julien Martin.

    That's not a legacy method. The latest version of JTOpen was issued less than a month ago. And note that it's open-source, so you could change it yourself to provide percent-complete data. (Of course you'd have to be able to get that data from the underlying iSeries command.)
    It wouldn't be easy, but if you think about it for a minute you'll realize that you can't display percentage complete in a progress bar unless you have some way of finding out what percentage the task has actually completed.

  • Progress Bar component

    I have used the UI progress bar component in Flash CS3 AS2.
    For some reason the progress bar appears to work fine, when it gets
    to 100% it loads the movie about 3/4 way down the timeline. Its
    almost like the movie itself is playing behind the progress bar.
    Help! Thanks!

    No one?

  • Dynamic control of progress bar component

    Hello, I'm trying to use a load progress bar component to
    appear as .swf files are loaded into a blank movie symbol when
    users click on a button. What script can I use to connect the
    progress bar, button, and the empty movie clip?

    You can use the progress bar Component as a preloader of
    sorts, but this doesn't work very well within the same document.
    The best way to go about doing this is to create a 'loading' swf
    file, that is the same size as the swf your main swf, then make an
    empty MC and load the swf into it and you can then use the progress
    bar Component to display the loading (or any number of other visual
    indicators) loading is best done using the MovieClipLoader class,
    where you can use it's event handlers and methods to effect the
    progress indicator, however the pbar Component has these handler
    built in as well so in this case for simplicity I'll use the
    loadMovie method (I rarely do) So with a swf the same size as the
    one you want to load, place a pbar instance on the stage with the
    instance name of 'my_pb', and create an 'actions' layer and add
    this code to the first frame:

  • Need progress bar component help.

    I have a huge headache from doing hours of web searching for
    what seems to be a simple solution. All I want to do is use the
    progress bar component on frame one to load my main timeline and I
    can't find a tutorial for this anywhere. Can anyone help? Thanks in
    advance,
    Joe

    You can use the progress bar Component as a preloader of
    sorts, but this doesn't work very well within the same document.
    The best way to go about doing this is to create a 'loading' swf
    file, that is the same size as the swf your main swf, then make an
    empty MC and load the swf into it and you can then use the progress
    bar Component to display the loading (or any number of other visual
    indicators) loading is best done using the MovieClipLoader class,
    where you can use it's event handlers and methods to effect the
    progress indicator, however the pbar Component has these handler
    built in as well so in this case for simplicity I'll use the
    loadMovie method (I rarely do) So with a swf the same size as the
    one you want to load, place a pbar instance on the stage with the
    instance name of 'my_pb', and create an 'actions' layer and add
    this code to the first frame:

  • Reusing progress bar component?

    I'm trying to reuse the progress bar component and it seems to not be responding. I'm can set the value to zero but everytime I try to do anything else it always sets the progress to 100%?
    progress_ldr[file.name].name_txt.text = "Resizing-" + file.name;
       //progress_ldr[file.name].progress_bar.reset;
       progress_ldr[file.name].progress_bar.source = null;
       progress_ldr[file.name].progress_bar.mode = ProgressBarMode.MANUAL;
       progress_ldr[file.name].progress_bar.minimum = 0;
       progress_ldr[file.name].progress_bar.maximum = 100;
       progress_ldr[file.name].progress_bar.value = 0;
       progress_ldr[file.name].progress_bar.setProgress(50, 100);

    No one?

  • Problem using Adobe flash

    I have seen more people on the forums with this problem but i cant find the good answer
    I'm using Windows 7 and firefox and when i download the new version of Adobe it says that the download is succesfull but when i try to open a site like youtube it says that i need to download a recent update of adobe flash and im sure i downloaded the latest update
    Can i get some help it's really annoying if you cant go to youtube or other sites
    Sincerely
    Megak

    Hi,
    You have step-by-step information on installing Flash Player in the following link: http://helpx.adobe.com/content/help/en/flash-player/kb/installation-problems-flash-player- windows.html#main-pars_heading_5
    I hope you saw the screen, "Installation Complete" while installing.
    Could you please go to the following link and let us know what you see: http://helpx.adobe.com/flash-player/kb/find-version-flash-player.html
    Thanks,
    Sunil

  • There used to be a grey progress bar on youtube videos on Firefox, which doesn't come anymore.; it shows up on IE though; how can I fix it in Firefox?

    Youtube videos on Firefox do not buffer anymore.

    Reload web page(s) and bypass the cache.
    * Press and hold Shift and left-click the Reload button.
    * Press "Ctrl + F5" or press "Ctrl + Shift + R" (Windows,Linux)
    * Press "Cmd + Shift + R" (MAC)
    Clear the cache and the cookies from sites that cause problems.
    "Clear the Cache":
    * Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now"
    "Remove Cookies" from sites causing problems:
    * Tools > Options > Privacy > Cookies: "Show Cookies"
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode

  • URGENT : Progress Bar component start showing too late

    I'm using the ProgressBar component in a large movie
    containing a lot of objects, images ecc ...
    In the first frame i've put a ProgressBar component managed
    by the following ActionScript code :
    stop();
    listener = {path:this};
    listener.complete = function()
    this.path.play();
    pr_main.mode = "polled";
    pr_main.source = _root;
    pr_main.addEventListener("complete", listener);
    where pr_main is the instance name of the ProgressBar.
    Well, when i try to simulate Download, i have to wait like
    4-5 seconds for the bar to appear and when it happens, the bar
    shows that the loading is already at about 50%, and after it starts
    to work correctly.
    Why i'm experiencing this behaviour ?
    Thanx to all

    >>In the first frame i've put a ProgressBar component
    That's the problem. To use the component is has to first
    fully load.

  • Sizing photo's in Photoshop to use in Macromedia Flash MX 2004

    Am trying to create a gallery for webpage using Macromedia Flash MX 2004, have imported photo's into library and got the Flash gallery to publish.  But am concerned as the flash .swf file is only 273kb with 20 images in it, the existing gallery file I am wanting to replace is approximaately 2.5mb.
    I was advised to downsize each photo to 300x200 pixels which seems to fit the display in the flash file.  Thought maybe I am doing something wrong in Photoshop when I am resizing each photo from original 3 or 4 mb photo down to the 300x200 pixel size.  Any clues out there?

    I really know nothing about Macromedia Flash, but since no one has given any responses my thought is that if doing an action you need small pictures so they will load quickly.
    If you resize save as new image so the quality images are not destroyed.  If you have a lot of pictures to resize check out Bridge/tools/photoshop/image processor.

  • FLASH MX 2004 action script question

    Hi!
    I need to create an script for a basic function; when mouse goes over a moveclip, that works also link, I want it to trigger an invisible red dot on a nerby map. I have created a movieclip and named it "red", it's a 1 sec clip with nothing in the beginning and a red dot in the end. I want this dot to trigger and show only when mouse goes over this specific link, otherwise it must be invisible.
    I know this is pretty basic stuff and I have done this before few years back but I have forgotten how to do it and need help now.
    Any help would be very much appreciated :-)
    Kim

    I still need help, this problem is little more complicated;
    I can manage making the red dot visible and invisible by triggering roll over and roll out on a button.
    The problem is, I have a navbar which is line of flags made to a movie clip, with 5 invisible buttons. These buttons are configured to do three different actions; get URL, trigger a light effect and a movement effect.
    Now I need this invisible button to trigger my red dot also so that when mouse is over a certain flag a red dot appears on a map on the correct location.
    I have the red dot on a new layer. It has instance name "redDot" and on the very first frame of this red button layer, I have action script that says: redDot._visible = false;
    This works as it should and the dot is invisible when the movie has loaded.
    I need to make this invisible button to trigger the visibility of my red dot, and I have tried to add the code:
    on (rollOver) {
    redDot._visible = true;
    on (rollOut) {
    redDot._visible = false;
    to this invisible button, but it dosent work, furthermore it affects the other functions of the button/movie clip, which were working fine before.
    Here is the code attached to this invisible button so far:
    on (release) {
    getURL(/:url1);
    on (rollOver) {
    gotoAndPlay(2);
    on (rollOut) {
    gotoAndPlay("sec");
    I have the URL:s on an external text file.
    So my question is; where do I add the action script to make it visible when moving the mouse over this invisible button? To my understanding, it should go in the same place as the other code that is working, but I'm doing something wrong...
    I tried to do this:
    on (release) {
    getURL(/:url1);
    on (rollOver) {
    gotoAndPlay(2)
            redDot._visible = true;
    on (rollOut) {
    gotoAndPlay("sec")
    redDot._visible = false;
    But it is wrong, I also tried like this:
    on (release) {
    getURL(/:url1);
    on (rollOver) {
    gotoAndPlay(2);
    on (rollOut) {
    gotoAndPlay("sec");
    on (rollOver) {
    redDot._visible = true;
    on (rollOut) {
    redDot._visible = false;
    But it makes the other functions that worked to stop working.
    I also tried to give the invisible button an instance name and do it like this:
    invisible.on (rollOver) {
            redDot._visible = true;
    invisible.on (rollOut) {
    redDot._visible = false;
    And put them in the actions layer of button movie clip but nothing works.
    Flash is really giving me a headache now...
    To conclude, I made a simple test button, put it on the scene somewhere and and attached the rollOver and rollOut codes, targeting the "redDot" and it works fine, the button didn't need a instance name to work. I don't understand why I can't make it to work with the invisible button where it should be.
    I hope this clarifies the point and I can get some help with this and sorry for bothering again with this problem.
    Oh and I use old Flash MX 2004.
    Thanks
    Kim

  • No progress bar for QT movies?

    Is there no progress bar in Safari or QT for to show the completion of downloading of embedded or separate QT movies? My .mov files just do nothing except show the big Q, say nothing, until the whole movie has been loaded.

    Hi William,
    I think I understand: You say you do "NOT want the movies to play automatically". This means that you don't want them to stream.
    In that case, I don't think there is a progress bar, unless the movie author has developed one. The built-in "progress bar" in QT is for streaming files. Even with Flash movies, the progress bar is authored; there's no automatic progress bar.
    If you do NOT want streaming, then maybe Enable Instant On should be un-checked.
    Otherwise, there are two preferences that affect a movie's automation: QuickTime >> QuickTime Preferences >> Browser >> Play movies automatically, and back up to QuickTime >> Preferences (plain ole' "Preferences") "Automatically play movies when opened".
    I happen to have the former checked, and the latter unchecked; but can't say how it affects the files (which I allow to stream).
    Have you tried the QuickTime Discussions to see if anyone has answers to your "stutter"? It might be worth searching around and posting your problem there; because it seems what you are saying is that you would want streaming if the delivery was smoother.

  • Help - Grey wheel with progress bar on start up and then Macbook Pro turns of.

    So i recently bought a Macbook Pro 13 inch (the lower end). While doing my research i found the smartest thing to have a relatively fast macbook was to increase the ram. I bought http://www.newegg.com/Product/Product.aspx?Item=N82E16820148345 and installed it in my macbook pro. After starting up the macbook, i got to my login screen. However, everytime the computer would try to start up to my account, i would get a blue screen and then be brough back to my login page for the account. I assumed that the RAM was not fitted properly since my research indicated that it was most likely the problem. I re-installed the RAM sticks with more force but to no avail. Then i even switched the RAM sticks while installing to make sure that either one of my new RAM chips was not faulty but after a while, my MBP refuses to start up. I get the grey apple logo, with a spinning wheel and progress bar. The bar goes a quarter length before the laptop shuts off. I then put it in the original RAM sticks, but the same problem. Apple logo, spinning wheel, progress bar and then powers off. Any suggestions or thoughts as to what may have happened? Thank you!

    Last night the electricity went out and my power surge protector was not working so my iMac just force shut downed.
    So, when the electricity came back i turned on my Mac but it is *Stuck in the Startup/Boot Screen with a Grey Apple Logo,a Empty Progress Bar with stays for 1 or 2 minutes and a small Spinning Wheel which would Spin Forver! I Have tried the SMC and Pram reset but no use, i have also tried to insert my OS X Lion 10.7 Installation disk and it would not load if i hold the C Key in the Startup, I Have Managed to go to Disk Utility Through "Recovery HD"  but the Volume "Macintosh HD" is Greyed out and Unmounted and i cannot repair it. There are some files that i'd like to Recover if there is a way to fix it without deleting files.
    **PLEASE HELP ME FIX THIS!**
    Details about the iMac:
    iMac 21.5 Inch i think from Mid 2010,
    OS X Lion installed maybe 10.7.2 or 10.7.3 (im not sure)

  • Macromedia Flash MX 2004

    Hi, I have a problem, with Macromedia Flash MX 2004, My teacher has our Animation class using the 30 day free trial, well I've only used it for two days and it says I have no more trial days? I'm wondering if you could help or get my 28 free trial days back? please and thank you.

    Once the trial period has end, Adobe Support cannot assist you in extending your trial, even if the trial ended prematurely
    You can install the trial on a new computer.
    please check: http://kb2.adobe.com/cps/187/tn_18759.html

Maybe you are looking for