New version, want to come back to the previous download box, a new has no history and does not show the speed of download, how to get back?

They are in the question. I was very happy with the old download box, I have a mac, so when I got the new update of firefox, I was very surprised to see I cannot look through old downloads and can not see the speed in which the file is downloaded, it is not sensible cut options off...

Note that Firefox 20 can also open the topic: downloads page in a tab (see also about: on).

You can set the Boolean pref browser.download.useToolkitUI true on the topic: config page to restore the old Download Manager window.

Tags: Firefox

Similar Questions

  • I bought the app composition unique creative cloud for acrobat.  When I log into my account it does not show that I bought.  How can I get the download to work without buying again.  I have a receipt for my purchase.

    I bought the app composition unique creative cloud for acrobat.  When I log into my account it does not show that I bought.  How can I download this product without buying it again.  I received my purchase.

    Hello

    Please check the help below document:

    Applications creative Cloud back in test mode after an update until 2015 for CC

    Kind regards

    Sheena

  • When I try to view my devices to Control Panel/hardware and Sound/devices and printers, he treats forever and does not show the devices.

    When I try to view my devices to Control Panel/hardware and Sound/devices and printers.  It treats forever and does not show the devices.  I need help!


    Original title: device and Printers window
    There could be various reasons why the window devices and printers stalls. All the control points are listed here.
  • When I try and download the free trial of CC for the sequels, the installer said 'double click to install', but the red box that I'm supposed to click does not show silent... what I do?

    When I try and download the free trial of CC for the sequels, the installer said 'double click to install', but the red box that I'm supposed to click does not show silent... what I do?

    Hello

    Please try to download the installer from the link below:

    Direct download links of Adobe CC 2015: 2015 creative cloud release | ProDesignTools

    Kind regards

    Sheena

  • Madam, Sir, since the last update my gmail is weird. It always shows my Inbox properly but if I open a message, shows adwords at the back of the net and does not show the message that the name header and the reply button on the right side of the message.

    It does not have this in Internet Explorer

    Wow, thanks! Who did the trick! (I mean subscriptions in Adblock Plus updated preferences).

  • Just bought the new mac pro book that does not have a cd rom. How can I install my software?

    Can how I install my CR6 on my new Mac, which does not have a CD Rom?

    Download applications download Creative Suite 6

    Install and enter your serial number.

  • Computer has a black screen and does not show the normal startup logo and more

    The computer that I use usually works well, until the next day, the day that I used it, ruined everything. My computer shows not the Windows 7 logo normal at startup, but instead, a bar with green lines in movement like the ones you see in older versions (Windows Vista), but now only the bar and did no logo in it and after starting does not display. It shows a completely black screen, but it makes a noise like the sound when she welcomes you to Windows 7. I tried safe mode and disabled the NVIDIA GeForce GT 220 graphics card and the screen works, but he is stuck at 800 x 600. In addition, the start screen is always the bar. How can I fix it? (Tried updating the gpu but still displayed black screen)

    Hello Rafael,.

    Thanks for posting your question on the Microsoft community.

    We need more information about the issue so that we can help you better.

    What is the brand and model of your computer?

    Thank you for details on the issue.

    This problem may occur because of corrupted display driver.

    I suggest to start your computer in safe mode, uninstall the display driver, restart your computer in normal mode

    mode and update driver from the website of the manufacturer of the computer display.

    Please see this link:
    Why my screen is black when I start Windows 7?
    http://Windows.Microsoft.com/en-us/Windows7/why-is-my-screen-black-when-i-start-Windows-7

    Important notes:
    Serious problems can occur if you modify the registry incorrectly. Therefore, make sure that you proceed with caution. For added protection, back up the registry before you edit it. Then you can restore the registry if a problem occurs. For more information about how to back up and restore the registry, click on the number below to view the article in the Microsoft Knowledge Base:
    http://Windows.Microsoft.com/en-us/Windows/back-up-registry#1TC=Windows-7

    When you use system restore to restore the computer to a previous state, the programs and updates that you have installed are removed.

    I hope this information helps.

    Please let us know if you need more help.

    Thank you

  • Menu remains visible after you make the selection, and does not show Popupscreen

    Hey. Unable to get a (a gaugefield) on a Popupscreen progress bar to show. It is called from a menu. The user clicks a menu item, and a method is called. The method among other pushes a Popupscreen containing a Gaugefield on display battery-code below. Then, he starts a thread which downloads an image and using join() to wait for it complete (long story). Then, in the thread of events, it appears the Popupscreen.

    The menu does not disappear when you click on it in the Simulator (JDE 4.7, the Bold 9700 sim), but the download happens. Once the download is complete, the menu disappears, the Popupscreen is shown and he tried to pop() Popupscreen, causing an IllegalArgumentException.

    I tried to split the method into two methods, the download happened in the 2nd method, because I read the forum search that the UIEngine don't update the display until the method finishes (it runs in the event thread). But it made no difference...

    How can I get this menu to disappear immediately and the push (popup) to work?

    See you soon!

    Justin.

                            progressbar = new GaugeField("", 0, 100, 50, GaugeField.NO_TEXT);
                            progress = new PopupScreen(new FlowFieldManager()) { protected void OnDisplay() { super.onDisplay(); /*cancelButton.setFocus();*/  }  };
                            globalTiles.pushScreen(progress);
    
                            progress.add(new LabelField("Downloading (rest of) picture ..."));
                            progress.add(progressbar);
                            progress.setFocus();
    
                            if (!threadbg.isAlive()) {
                                       threadbg = new ThreadForBgDownload();
                                       threadbg.start();
                            }
                            else {
                                       // Show the progress bar, mostly complete (it is running and was in the bg). Game will start after last bit done
                            }
    
                            threadbg.join(); // Wait for download thread to complete and 'die'
    
                            globalTiles.popScreen(progress);
    

    Rule #1: all display updates should occur on the thread event or synchronized on the lock of the event.

    Rule #2: the thread of events (or now the lock of the event) should never be blocked by lengthy operations.

    The scenario you sketched out is usually handled like this: menu item run() method don't whatever immediate user interface updates are necessary and starts a worker thread. It does not wait until the thread ends before returning. (If so, updates the user interface include pushing a "Please wait" or progress pop up). The worker, at the same time, begins to do its stuff. When it's time to update the user interface (either because the task is completed or to view progress) the worker thread usually called invokeLater (Runnable) (a method in the Application class) where the executable run() method updates the user interface. If the worker thread must receive user input in his work, he can use invokeAndWait (Runnable), where the executable not all interactions of the user and stores the user entry somewhere so that the worker thread can grab after invokeAndWait() returns.

    Although the synchronization on event lock works perfectly well, it is more common for some reason any to invoke a Runnable, perhaps because the latter clearly encapsulates in a separate object the work to be done on the event thread.

    The above policy is the basis of the excellent Peter Strange example I linked to before.

  • HP 5600 Envy: I had to get a new laptop - it has Windows 7 and does not recognize my HP Envy 5600. Help!

    I just use the indications given on the support forum.  Error message was: "Printer not installed."  Not much to do!  My old laptop fell and broke, I got another one with Windows 7 too.  But it does not recognize my HP Envy 5600.  I have a wireless connection and a WiFi network in my house.  1 thing: it installs it as a scanner, but not a printer.  Please help me - it ' for 3 weeks and I can not print!

    Thanks in advance to anyone who can help you with this!

    Thank you.  In fact, I did a download of the printer driver for the HP Envy 5660 and let him take his time.  It installed perfectly and now I am running, printing, scanning and copying everything on Pinterest to get my house and my world a more beautiful place!  Thank you very much for your help!

  • I have problems with Windows Mail where if I delete an email it comes back and does not show as being deleted.

    original title: windows mail emails will not remove properly

    I have 3 email accounts Windows settings on my computer. Two work well but we do not. When I try to delete an e-mail message from any folder, it is always visible until I have let the record can return and then it is transferred in the deleted folder. If I try to remove it from there it remains, but when I leave the folder and back then it will be deleted? Please help very frustrating

    Try to compact and repair the database and see if that fixes the problem (see www.oehelp.com/WMUtil/).  If not, then look for antivirus or other 3rd party program interference (see www.oehelp.com/OETips.aspx#3 of many antivirus programs are not compatible with WinMail).  But suffice it to compact and repair the database could solve the problem.

    Steve

  • I have a valid copy of XP, on a new reformatt, does not have my pkg game. How to get the games abd pkg install?

    pkg game has not installed the last reformatting, how do I get and download the pkg game?

    Thank you

    Preston

    Hi Preston,

    Follow the steps listed in the article mentioned below to solve the problem:

    How do I add or remove games in Windows XP

    http://support.Microsoft.com/kb/307768

  • I have a bluetooth headset that I want to connect to my HP g60 but when I click on add imagine it does not show anywhere.

    Original title; I have a bluetooth headset that I want to connect to my hp g60 but when I click on add imagine that it shows all
    Bluetooth

    I have a bluetooth headset that I want to connect to my hp g60 but when I click on add imagine that it shows all

    Hi KellySnyder,

    Have you been able to use the headset bluetooth previously on your computer?

    You can follow this link & check if the problem persists:

    The problems with Bluetooth devices

    Hope the helps of information.
    Please post back and we do know.

  • Live 2011 (updated) - does not write new e-mail messages and does not properly create new e-mail accounts

    After the installation of the latest update of Windows Live Essentials 2011, I noticed the following errors:

    • I can create is no longer new e-mail (embarrassing for an electronic mail system)
    • Newly added e-mail accounts are the Inbox, but no other standard files (anti-spam, although the discovery, remain in the Inbox)
    • Is no longer possible to create a new email in Live Messenger

    HELP, this way I can use my email properly.

    I tried to repair the two components .NET 4.0 without result and the .NET Framework 3.5 SP1.

    Hello

    For the different Forums for Windows Live Applications, select the link below and repost your questions here
     
    Welcome to Windows Live Solution Center
  • HP 15-r009tu Intel celeron: I bought a new system when on, it does not show anything

    I bought a new system when I have about it couldn't display anything. What can I do?

    Hello

    Thanks for posting in the Forum from HP Support.

    Could you elaborate on your problem - what do you mean "it shows not something"?

    The forum indicates that you use based on Linux OS - is that correct?

    Could you confirm the operating system?

  • Upgrade to version 42 and now the menu edit page info file is missing. I use it all the time and want to come back. Any suggestions?

    I've recently updated Firefox to version 42. On the old version, I could go tools-> Page Info and there would be a menu typical Edit at the top where you can select, copy, etc. On the new version this menu is absent and Ctrl C/Ctrl V do not work. Any suggestions on how to get that back?

    Try to rename (or delete) the file xulstore.json in the Firefox profile folder.

    You can see this bug:

    • bug 1219831 - history/downloads/Bookmarks window is stuck in fullscreen

Maybe you are looking for