URGENT pROGRESS BAR ERROR

Hi huys,i am a 2nd year Computer Programming Student.we have to make a game where there are two players.a random no is generated to get the progress bar to 100.the player who reaches 100 first wins the game
i can the random part right,but it is stuck on a number.it does not go all the way to 100
please look at my code if possible
import java.awt.BorderLayout;
import java.awt.Container;
import javax.swing.BorderFactory;
import javax.swing.JFrame;
import javax.swing.JProgressBar;
import javax.swing.border.Border;
public class ProgressSample {
public static void main(String args[])
JFrame f = new JFrame("JProgressBar Sample");
f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
Container content = f.getContentPane();
JProgressBar progressBar = new JProgressBar();
double val = (Math.random()*10)+1;
int val2 =(int)val;
// int val2 = Integer.parseInt(val);
int counter = 0;
     counter = counter + val2;
for(int i = 100;i >= 0;i++)
progressBar.setValue(counter);
progressBar.setStringPainted(true);
Border border = BorderFactory.createTitledBorder("Reading...");
progressBar.setBorder(border);
content.add(progressBar, BorderLayout.NORTH);
f.setSize(300, 100);
f.setVisible(true);
Thanks
Lisa

Spot the difference -
http://forum.java.sun.com/thread.jspa?threadID=671082&messageID=3922924#3922924
http://forum.java.sun.com/thread.jspa?threadID=671079&messageID=3922913#3922913
http://forum.java.sun.com/thread.jspa?threadID=671071&messageID=3922883#3922883
http://forum.java.sun.com/thread.jspa?threadID=670979&messageID=3922285#3922285
http://forum.java.sun.com/thread.jspa?threadID=670980&messageID=3922291#3922291

Similar Messages

  • Progress Bar Errors

    I was having a hard time finding the ProgressBar in the SDK, so I downloaded the latest version from Adobe (I haven't updated it since the pre-release) and now I'm getting a bunch of errors related to my progress bar:
    Description
    Resource
    Path
    Location
    Type
    1120: Access of undefined property ProgressBarSkin.
    ScratcherDeals
    line 1716
    Flex Problem
    1120: Access of undefined property ProgressBarTrackSkin.
    ScratcherDeals
    line 1717
    Flex Problem
    1120: Access of undefined property ProgressIndeterminateSkin.
    ScratcherDeals
    line 1720
    Flex Problem
    1120: Access of undefined property ProgressMaskSkin.
    ScratcherDeals
    line 1719
    Flex Problem
    1172: Definition mx.skins.spark:ProgressBarSkin could not be found.
    ScratcherDeals
    line 54
    Flex Problem
    1172: Definition mx.skins.spark:ProgressBarTrackSkin could not be found.
    ScratcherDeals
    line 22
    Flex Problem
    1172: Definition mx.skins.spark:ProgressIndeterminateSkin could not be found.
    ScratcherDeals
    line 29
    Flex Problem
    1172: Definition mx.skins.spark:ProgressMaskSkin could not be found.
    ScratcherDeals
    line 20
    Flex Problem
    These errors aren't actually referencing a file, so I can't figure out where they're coming from.

    Bump?
    Has anyone successfully used a progress bar?

  • CFFILEUPLOAD PROGRESS BAR ERROR (CF9)

    I created a very simple multiple file upload app using cffileupload in CF 9. I select multiple files, click the "Upload" button and can see the individual progress bars go green, then turn red with "Error" displayed within them. The overall progress bar remains green, and the files actually do upload to the appropriate folder. Any idea what controls the individual progress bars? Thanks in advance.
    Jim

    I don't have CF9 here to check, but it'll probably need a bunch of stuff in the /CFIDE/scripts (or adjacent) dir to be web-accessible for it to work.  This dir is generally accessible in a dev environment, but is often not accessible in an outwardly-facing environment because some stuff in /CFIDE should not be externally accessible (like the CF Administrator dir).  Your sysop bloke has probably blocked off too much stuff, like you suspect.
    Adam

  • URGENT: progress bar update problem

    Hi,
    I have the following problem: I have a JWindow that displays as a Splash screen at the start of my application. On that I have a progress bar that updates upto 60% (there is no task associated with it, I simply create a thread that does this). In the main thread, i wait for this thread to complete and then display a login dialog box on top of the splash screen. At this time, the progress bar is not increasing.
    After logging in correctly, I wish that the login dialog box be disposed, and i should be able to see the progress bar reach completion, after which i want a JFrame to be displayed with a lot of components, and after this JFrame is displayed, i want the splash screen to be disposed.
    However, the progress bar updates itself properly till the login dialog is displayed. when i click enter on the dialog box, although i have called dispose, the part of the dialog box over the splash screen reamins visible, and the progress bar is no longer updated. I have printed System.out.println statements in the run part of the thread doing the update, and this shows that the progress bar value goes on to reach 100. but the GUI is not updated.
    Can any1 explain why this is happening? Any help inthis matter would be highly appreciated... Pls reply URGENTLY!!! i've already spent three days looking into this!!!
    Thanks...
    Shefali Panchal

    Caution with using threads to update the display -
    look at the Swing __utility__ class methods, I seem to remember that
    there are 2 methods in which you pass a thread instance
    (which can contain display update calls)and this is called and maintained within the event despatch thread - this should mean
    that display updates are done correctly.
    Refer to Swing documentataion with regard to utility methods
    Hope this is of help

  • Progress bar error

    Hi huys,i am a 2nd year Computer Programming Student.we have to make a game where there are two players.a random no is generated to get the progress bar to 100.the player who reaches 100 first wins the game
    i can the random part right,but it is stuck on a number.it does not go all the way to 100
    please look at my code if possible
    import java.awt.BorderLayout;
    import java.awt.Container;
    import javax.swing.BorderFactory;
    import javax.swing.JFrame;
    import javax.swing.JProgressBar;
    import javax.swing.border.Border;
    public class ProgressSample {
    public static void main(String args[])
    JFrame f = new JFrame("JProgressBar Sample");
    f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    Container content = f.getContentPane();
    JProgressBar progressBar = new JProgressBar();
    double val = (Math.random()*10)+1;
    int val2 =(int)val;
    // int val2 = Integer.parseInt(val);
    int counter = 0;
         counter = counter + val2;
    for(int i = 100;i >= 0;i++)
    progressBar.setValue(counter);
    progressBar.setStringPainted(true);
    Border border = BorderFactory.createTitledBorder("Reading...");
    progressBar.setBorder(border);
    content.add(progressBar, BorderLayout.NORTH);
    f.setSize(300, 100);
    f.setVisible(true);
    Thanks
    Lisa

    Spot the difference -
    http://forum.java.sun.com/thread.jspa?threadID=671082&messageID=3922924#3922924
    http://forum.java.sun.com/thread.jspa?threadID=671079&messageID=3922913#3922913
    http://forum.java.sun.com/thread.jspa?threadID=671071&messageID=3922883#3922883
    http://forum.java.sun.com/thread.jspa?threadID=670979&messageID=3922285#3922285
    http://forum.java.sun.com/thread.jspa?threadID=670980&messageID=3922291#3922291

  • 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.

  • ITunes progress bar freezes iTunes, kinda.

    So I just got my HD replaced. My iTunes library file (the .xml file) became corrupted. I started a new Library. I'm now in the midst of adding new songs, not the songs that I originally had in my iTunes. What happens though anytime I edit the id3 tags for more than one mp3. So lets say I add art work to an album. The progress bar pops up and freezes. iTunes though is still responsive. I can pause music. I can select a different track. Yet, the progress bar still is shown. I've been using iTunes for years and I know this isn't possible. It won't let me CMD+Q quit the app. But if I right click in the dock and choose Quit (not force quit) the app quits fine. I can then reopen it like normal.
    Let's say I go back to the album that I was adding cover art too. Half of the songs will have the cover art, the other half not. I then have to add the art one by one or I'll get that same progress bar error. This is very annoying, since I'm building my library all over again. I have to quit and re open the app multiple times. Frustrating!
    I've tried a new new Library file, I tried re-installing iTunes. Same thing happens. Should I just delete the entire iTunes folder in /Library? Will that fix it?

    Boot from your System install disc and run Disk First Aid and Repair permissions.

  • 'setProgress is not a function' error while setting the progress of a progress bar manually

    I want to set value of a progress bar in an accordian but I am encountering 'setProgress is not a function' error. Any idea what's wrong with following code.
    Observation:
    If I move the progress bar out of the Accordian then the error goes away and the progress bar appears fine.
    I want to set the progress bar eventually to {repMonitor.currentItem.threatLevel} but for now I am just testing with hypothetical threat value i.e 60
        <mx:Accordion id="monAccordian" includeIn="Monitoring" x="10" y="10" width="554" height="242" change="monAccordianChange()" >       
           <mx:Repeater id="repMonitor" dataProvider="{monitoringArray}">
              <mx:Canvas width="100%" height="100%" label="{repMonitor.currentItem.firstName+' '+ repMonitor.currentItem.lastName}" >
                <mx:Image x="10" y="10" source="{repMonitor.currentItem.imageName}" width="175" height="118"/>
                  <s:Label x="200" y="14" text="Threat Level:"/>
                  <mx:ProgressBar x="200" y="30" mode="manual" label="" id="bar" width="200" creationComplete="bar.setProgress(60,100);" />
              </mx:Canvas>
           </mx:Repeater>
        </mx:Accordion>

    Okay.. Thanks.
    On another forum I ve been told that I need to use getRepeaterItem. How can I use it to set my progress bar such the value of progress may be taken from repMonitor.currentItem.threatLevel?

  • Error while running progress bar

    Hi ,
    I wrote the following code in process form request to get the progress bar.
    if (pageContext.getParameter("submit") != null)
    while(i<20)
    try{
    OAProcessingPage page =
    new OAProcessingPage("xxx.oracle.apps.xxap.apr.webui.testingCO");
    page.setConciseMessage("This is the concise processing page message.");
    page.setDetailedMessage("This is the detailed message which should explain what's happening.");
    page.setProcessName("Wait for some time..");
    pageContext.forwardToProcessingPage(page);}
    catch (OAException E)
    System.out.println("inside catch ");
    pageContext.putDialogMessage(E);
    System.out.println("inside loop ");
    i++;
    it showing clock symbol but the next second it shows the followin error:
    Exception Details.
    oracle.apps.fnd.framework.OAException: java.lang.NullPointerException
         at oracle.apps.fnd.framework.OAException.wrapperException(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAPageErrorHandler.prepareException(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAPageErrorHandler.processErrors(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAPageBean.processFormRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(Unknown Source)
         at OA.jspService(_OA.java:71)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:462)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:713)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
         at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
         at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:221)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:122)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:111)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:595)
    ## Detail 0 ##
    java.lang.NullPointerException
         at xxhex.oracle.apps.xxrmu.repmig.webui.RepExecuteCO.processFormRequest(RepExecuteCO.java:65)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.beans.layout.OAStackLayoutBean.processFormRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.beans.layout.OAStackLayoutBean.processFormRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAPageLayoutHelper.processFormRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.beans.layout.OAPageLayoutBean.processFormRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.beans.form.OAFormBean.processFormRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.beans.OABodyBean.processFormRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAPageBean.processFormRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(Unknown Source)
         at OA.jspService(_OA.java:71)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:462)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:713)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
         at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
         at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:221)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:122)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:111)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:595)
    java.lang.NullPointerException
         at xxhex.oracle.apps.xxrmu.repmig.webui.RepExecuteCO.processFormRequest(RepExecuteCO.java:65)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.beans.layout.OAStackLayoutBean.processFormRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.beans.layout.OAStackLayoutBean.processFormRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAPageLayoutHelper.processFormRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.beans.layout.OAPageLayoutBean.processFormRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.beans.form.OAFormBean.processFormRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.beans.OABodyBean.processFormRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAPageBean.processFormRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(Unknown Source)
         at OA.jspService(_OA.java:71)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:462)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:713)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
         at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
         at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:221)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:122)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:111)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:595)
    iam new to oaf can any one please help me how to resolve it...

    hi ,
    i wrote the following code i got the clock and i moved to the home page again but no operations are performed between these two actions.following is my code.
      public void processFormRequest(OAPageContext pageContext, OAWebBean webBean)
        string test="A";
    try{
        if( pageContext.getParameter("submit") != null) 
          OAProcessingPage page =
                              new OAProcessingPage("xxx.oracle.apps.xxap.apr.webui.testingCO");
                      page.setConciseMessage("This is the concise processing page message.");
                      page.setDetailedMessage("This is the detailed message which should explain what's happening.");
                      page.setProcessName("Wait for some time..");  
                      pageContext.forwardToProcessingPage(page);
           test="B";
    System.out.println("testing "+rtest);//this action is not done.. it is not giving any print statement whil running in local system
       catch (OAException E)
               pageContext.putDialogMessage(E);
               pageContext.forwardImmediatelyToForm("OA.jsp?page=/oracle/apps/xxap/apr/webui/TestPG&retainAM=Y");//(forward to calling page with retainAM=Y)
                HashMap hashmap1 = new HashMap(1);
                hashmap1.put("test", "test");
                  if(test!= " "){
                                            System.out.println("test "+test);
                pageContext.setForwardURL("OA.jsp?page=/oracle/apps/xxap/apr/webui/TestPG",
                                          null,
                                          OAWebBeanConstants.KEEP_MENU_CONTEXT,
                                          null,
                                          hashmap1,
                                          true,
                                          OAWebBeanConstants.ADD_BREAD_CRUMB_YES,
                                          OAException.CONFIRMATION);
    test value shows only "A"
    and it is also not giving any confirmation message after moving into same page. please help me on this...

  • My files are not uploading; progress bar stops and I get an error message

    Last night (dec. 23) I was trying to upload 30 photo files. The progress bar works, but it either stalls or at the end I get an error message. These are time critical, I have a client waiting for the photos. I tried sending just a couple of photos, but the same issue happens. Please give me a solution.

    Hi Lory Hawley,
    Have you been able to upload your files? What is the error that you're receiving?
    For starters, please try the following:
    Clear the browser cache and try again.
    Try a different browser (see System requirements | Acrobat.com for a list of supported browsers).
    Please let us know how it goes.
    Best,
    Sara

  • I am performing a clean install of OS X vs. 10.8.5 on a new internal hard drive.  At the end of the installation process the progress bar stalls with a minute to go - error message "Can't download the additional components needed to install OS X" appears

    At the end of the installation process (Clean install, new 500GB internal hard drive, formatted and partitioned, MacBook 13" Aluminum, late 2008) the progress bar stalls and eventually a drop down error message appears "Can't download the additional components needed to install OS X".   I am using a USB 8 GB bootable flash drive.  Any ideas? 

    At the end of the installation process (Clean install, new 500GB internal hard drive, formatted and partitioned, MacBook 13" Aluminum, late 2008) the progress bar stalls and eventually a drop down error message appears "Can't download the additional components needed to install OS X".   I am using a USB 8 GB bootable flash drive.  Any ideas? 

  • Repair Permissions Error (Close to Runs too long, No Progress Bar)

    I have gotten this Repair Permissions error at least 10 times:
    Warning: SUID file "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/MacOS/ARDAg ent" has been modified and will not be repaired.
    One Internal Hard Drive, Erase, Install from scratch using Retail 10.5 DVD.
    Quad 266.
    It is similar to Repair Permissions takes forever with no progress bar, I get the Barber Pole for about 10 minutes and then it finishes with the above error. It seems like it is hanging trying to deal with the problem file and can't repair it.

    I ran REPAIR PERMISSIONS again after installing Acrobat updaters.
    At first I quit because it appeared to be hung.
    I re ran it and came back later to this:
    Repairing permissions for “105_HD”
    Stopped by user
    Permissions repair complete
    Repairing permissions for “105_HD”
    Warning: SUID file "usr/libexec/load_hdi" has been modified and will not be repaired.
    Warning: SUID file "System/Library/PrivateFrameworks/DiskManagement.framework/Versions/A/Resources /DiskManagementTool" has been modified and will not be repaired.
    Warning: SUID file "System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Reso urces/Locum" has been modified and will not be repaired.
    Warning: SUID file "System/Library/PrivateFrameworks/Install.framework/Versions/A/Resources/runner " has been modified and will not be repaired.
    Warning: SUID file "System/Library/PrivateFrameworks/Admin.framework/Versions/A/Resources/readconf ig" has been modified and will not be repaired.
    Warning: SUID file "System/Library/PrivateFrameworks/Admin.framework/Versions/A/Resources/writecon fig" has been modified and will not be repaired.
    Warning: SUID file "usr/libexec/authopen" has been modified and will not be repaired.
    Warning: SUID file "System/Library/CoreServices/Finder.app/Contents/Resources/OwnerGroupTool" has been modified and will not be repaired.
    Warning: SUID file "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/MacOS/ARDAg ent" has been modified and will not be repaired.
    Permissions repair complete

  • I have recently bought an iPhone 4S and I am trying to install iOS7. The install initially failed and I received an error message. I attempted a restore, however, the progress bar is now stuck at "Restoring iPhone software.."

    I have recently bought an iPhone 4S and I am trying to install iOS7. The install initially failed and I received an error message. I attempted a restore, however, the progress bar is now stuck at "Restoring iPhone software.."
    I'm still attempting to restore it, but the process goes as follows
    - Extracting software.
    - Waiting for iphone.
    - Preparing iphone software for restore.
    - Verifying iphone software.
    - Restoring iPhone software.
    It is at this point where it begins to load approxiamtely 10% and then freezes. I have had the handset connected 7 hours with no progress and this is my third attempt since Friday. Please help.

    See Here  >  http://support.apple.com/kb/HT1808
    You may need to try this More than Once...
    Be sure to Follow ALL the Steps...
    But... if the Device has been Modified... this will Not necessarily work.
    Unauthorized modification of iOS  >  http://support.apple.com/kb/HT3743

  • HT1379 i tried to update and there was an error, i tried again. when i tried to start, i get the chime and a progress bar that goes about 25% then disappears and the computer turns off. nothing works. it does this every time i try to start

    i just received a mac book pro from my dad. while trying to get used to it i tried to upgrade the os which failed because of an error. i tried again. when i tried to start later, i get a chime, and progress bar, and a spinning wheel. after 1 minute the bar is only progressed 25% then it disappears and the screen goes black. none of the keys work. I tried to re boot and the same thing happens. what do i do?

    If it's new and you don't have anything on it yet, you can reinstall the OS from scratch. You don't say what OS or model, but try booting while holding down the Command and R keys. If you get the recovery partition, use Disk Utility to reformat the disk then reinstall.
    This will wipe out everything on the drive though.

  • HT4623 My iphone had an error while updating and is now locked up on the apple screen with the progress bar

    Itunes was updating my phone from 6.01 to 6.1 and it came up with an error. I closed the error not thinking about it and now my phone is locked up on the apple screen with the progress bar on it.

    hi i tried to update my iphone 3gs from ios 4.1 to 6.1.2, while doing the same i got an error message (-5000) which i ignored an continued. it was almost about to complete while my itunes is not able to detect the iphone kindly help.

Maybe you are looking for

  • In Numbers, how can i change only the year in a date formatted column of data?

    I'm using Numbers 3.5.2 on an iMac running Yosemite 10.10.2. This column is a listing of dates tied to info that needs to happen on a particular date each year. Rather than re-key all the dates so the year advances to 2015, it would be great if I cou

  • How can I  custom my date  in OBIEE.

    How can I custom my date in OBIEE.I want to see date in my user friendly format for Date Format MM/DD/YYYY to filter with leading zero(number) eg (01.21.2008) and not M/D/YYYY (1.21.2008) that i am seeing.I would appreciate it if you could give me a

  • Using cookies to remember the last 2 links visited

    Hey everyone, I am trying to use learn JSP and cookie. I am making a webpage, and it is suppose to remembers the last 2 links selected from the website. Basically, there are a few radio buttons. The user is to pick one, press submit. I am trying to w

  • Infotype 0002 Amendment

    How do everyone We have just created a new client 333 on our dev machine. We are currently using the existing 010 client. When I look at infotype 0002 via PA20 on the new client 333 I can see that there are certain customised ZZ fields missing. I cre

  • How do I fix Time Machine?

    I have a 3 TB SeaGate GoFlex drive and use 1 TB of it for my backups. I have repeatedly gone to pondini.org to fix the errors like ones ending with "while creating the backup folder" and "while copying files to the disk". I have formatted the partiti