Can I make download details automatically show when a download starts?

I want download details to open whenever I stat a download instead of the small progress thing

Hi jpjnerison,
If you are using Nightly, it looks like you can go to about:downloads, or click on the download arrow on the toolbar and "Show all downloads".
There is an add on [https://addons.mozilla.org/en-US/firefox/addon/download-manager-tweak/?src=search Download Manager Tweak] that changes the view, but it does not get rid of the status bar.
[https://addons.mozilla.org/en-US/firefox/addon/download-status-bar/?src=search Download Status Bar] shows alot of detail too.
However, I do not see one that hides the progress bar.

Similar Messages

  • TS1389 How can I make a song automatically play when I turn my Mac Mini?

    I want for my computer to play a song automatically when I turn my computer on. Is this possible?

    As long as you don't mind doing a little post publish editing of your .js files, it's fairly easy to do. You will find them in this path on your iDisk, using the Go menu in Finder:
    Go/iDisk/MyiDisk/Sites/iWeb/Nameofsitefolder/Page_filesFolder/Page.js
    Open the .js files for that particular page on your iDisk with any text editor (I like Taco, and it's free) and make the following changes to the script code that controls your movie: (you will find the movie code near the top of the page in the .js file)
    Change autoplay="false" to autoplay="true"
    Change loop="false" to loop="true"
    Changing controller value="true" to controller value="false" will remove the controller from the page entirely. Make these changes in both sets of tags, (object and embed).
    Make the changes and just "Save". Clear your browser cache and you should see the changes take effect immediately. Bear in mind you will have to make this modification each time you republish your site. You can also save this modified .js file and replace the republished file with it, as long as no other changes were made to the page in iWeb.
    -Mark

  • Can I make media sharing always enable when wifi is off?

    Hi all,
    Can I make media sharing always enable when wifi is off?
    or can i make media sharing automatically enable when wifi is on?
    By the way my device curve 9220 OS 7.1
    Thanks for your answer ^^

    Duane wrote:
    In Sharing I have 'Printer Sharing' turned ON
    In Print & Fax I have 'Share this printer' checked
    If you are describing the settings in System Preferences on your iMac, you need to turn those OFF. Your current setup has the iMac acting as the print server.
    Instead you want to rely on the Time Capsule to do the printer sharing. You would configure that using AirPort Utility.
    Thanks Duane, that bit of information did the trick. All I had to do was turn printer sharing off in sys prefs and it now works the way I thought it should work.
    Once again thanks so much for the help.

  • I down loaded sygic on my iPhone 3s but the icon is missing even in the search but when I want to download it again ,it say this application is present, how can I make the icon to show up

    I down loaded sygic on my iPhone 3s but the icon is missing even in the search but when I want to download it again ,it say this application is present, how can I make the icon to show up

    - Have you tried a reset. Nothing is lost
    Reset iPod touch: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Try syncing  the iPod to your computer. Then delete from iTunes and sync. that should delete it from the iPod. Then redownload it.

  • When using iMessage how can I make it so it shows my number not my Apple ID?

    When using iMessage how can I make it so it shows my number not my Apple ID?

    SETTINGS - MESSAGES - RECEIVE AT - CALLER ID (select your number, instead of your email address)

  • Can I make Skype quit automatically when I close i...

    I'm sick of having to close it on the task bar and then confirm I don't want it running any more.
    I've already confirmed I wanted to log out and close the program, why is it still running?
    I cannot find an option to quit from the menu whilst running, but I imaging it's buried somewhere.
    Could somebldy tell me how to either 'quit' automatically when I close the program, or if there is an option to close and quit while it's open?
    Failing that could I find out why it's do ******* important that it stays running in the backlground after I close it the first time?
    Solved!
    Go to Solution.

    This screenshot (http://community.skype.com/t5/Windows-desktop-client/Can-I-make-Skype-quit-automatically-when-I-clos... is from the currently latest Skype 6.7.0.102 version, but exactly the same window is shown with any previous version too.
    If you sign out of Skype before quitting, then the “Do not ask me again” option will not be shown. You don’t need to sign out before quitting!!!!

  • How can I make my BCC recipients show up in MY sent emails?

    When I send an email to BCC recipients, how can I make those BCC recipients show up in MY sent emails...so I'll remember who I sent the email to?

    Welcome to the discussions, MacPat292.
    View/Message/Long Headers or if you are going to do it regularly View/Customize Toolbar and add the button for it to your toolbar.
    AK

  • How do I stop the iMessage conversation from automatically showing when I go into the I message center? I only want the contacts to show down the left side and nothing on the right until I select a conversation to view.

    HOW DO I STOP THE WHOLE IMESSAGE CONVERSATION FROM AUTOMATICALLY SHOWING WHEN I GO INTO IMESSAGE? I only want the contact bar on the left to show and not the whole conversation, until I pick one to see.

    You can't. You can sign out of messages and turn it off, but you can't do what you would like to do. You can send feedback to Apple.
    https://www.apple.com/feedback/ipad.html

  • I have created a spreadsheet on numbers for ipad with a list of customers as a drop down menu. How can i make their address appear underneath when i select the customer?

    I have created a spreadsheet on numbers for ipad with a list of customers as a drop down menu. How can i make their address appear underneath when I select the customer?
    iselect the customer?

    Hi bazza,
    We won't be able to put the address from a formula into the same cell that you enter the customer's name. We can put the address in the cell under the customers name.
    First let's take James advice and concatenate the address in the address table.
    Here is the formula in G2
    =CONCATENATE(B2&"
    ",C2&"
    ",D2&"
    ",E2)
    It shows this way because after I clicked on B2 and typed [&"] (no brackets) I typed option-return
    This gives you your new line. Then I typed the closing ". I repeated this for the rest of the address.
    Next we want to bring this to your order sheet. I prefer using the two formulas OFFSET and MATCH instead of VLOOKUP.
    base tells OFFSETwhere to start counting from. Click A1.
    row-offset is for the row. we will use MATCH() -1 to give us the row.
    What MATCH does is give you the row number where something is found and you can specify an exact match. I usually construct the MATCH formula first and then cut and paste it into OFFSET. MATCH looks like this: MATCH(A2,Table 1::A,0). A2 is what we are looking for, Table 1A::A is where we are looking (the entire column A), and 0 means we want an exact match. Can you see it inside the OFFSET formula? Notice that we had to subtract 1 from its result.
    column-offset tells OFFSET which column A=0 so we want 6.
    we ignore "rows", "colomns" we don't need them.
    If this seems like too much, just break it down into small pieces.
    quinn

  • Can you activate a message to show when you open a document but someone else has already has it open?

    Can you activate a message to show when you go to open a document that someone already has the document open?

    We are using Dropbox application.
    Documents are word documents.
    Two users can open the same word document at the same time and both users can make amendments simultaneously without realising.  This then creates a conflicted copy in Dropbox.
    We would like to activate a message so if a user has a word document open and another user attempts to open it they receive a notification advising it is already in use.
    Hope this helps.
    Thanks

  • HT204380 How can I make the screen full screen when I am calling?

    How can I make the screen full screen when I am calling on Facetime on a Macbook Pro Laptop?

    Ok but if the iPhone 5s and 5 can go full screen the why can't the iPad Air as it too is new the problem shouldn't be hard to solve as I have looked the apple site and it show it just fine in full screen so I'm sure you understand when I say there is most definitely away of doing it so can Apple just sort it out I'm always telling my m8 how good Apple devices are and I've been let down on this so come on fix it PLEASE

  • How can I make my Introduction_mc automatically disappear after 10 Seconds and load Home_mc?

    Hi,
    How can I make my Introduction_mc automatically disappear after 10 Seconds and load Home_mc (automatically)? I don't want user to change by himself this Introduction page. It should be done automatically.
    What is the procedure and code to achieve it, please?
    Thanks.

    Hi,
    I gues you are using AS2.0, then use setInterval, in AS3.0 user Timer Class.
    AS2.0
    var interval:Number = setInterval(doThis,10000);//in milliseconds
    function doThis():Void{
    //do something;
    AS3.0
    var timer:Timer = new Timer(10000, 1);
    timer.addEventListener(TimerEvent.TIMER_COMPLETE, onTimerCompleteHandler, false, 0, true )
    function onTimerCompleteHandler(event:TimerEvent):void{
    //do something;
    For details: http://blogs.adobe.com/pdehaan/2006/07/using_the_timer_class_in_actio.html
    Warm Regards
    Deepanjan Das
    http://deepanjandas.wordpress.com

  • How can i make firefox reload automaticly every hour?!!!

    how can i make firefox reload automaticly every hour?!!!
    I download add-ons Reload Every
    how to manage it((setting))?!!!
    thanks addvance>>

    You installed the ReloadEvery Extension rather and not downloaded it to disk.
    To set the reload time for the tab you are viewing you can right-click the page and select a time.
    http://reloadevery.mozdev.org/
    http://reloadevery.mozdev.org/screenshots.html

  • Can you make core center automatically close after being called on startup?

    Can you make core center automatically close after being called on startup so it can set cpu fan speed to a slower fixed speed then exit?
    If core center really cant do such a simple task then can speedfan or another program?

    Quote from: bassmadrigal on 13-July-05, 07:42:36
    Why don't you want them running. Speedfan has a very small footprint.
    Just seems unnecesary seeming as it does its task as soon as it runs and its changes then stay applied. Speed fan is probably better but core center takes 10mb.
    Quote from: syar2003 on 13-July-05, 07:57:02
    You dont have to have it running to set a user specified fan rpm .
    Once it's set it is stored in the corecell/cmos chip on the motherboard .(until a cmos reset) .
    So to answer your question .
    There is no need to have it autostarted at each boot ...
    Thats how i have used it .
    Only reason to have it running is with MSI's "CnQ" control of the fan , varies with the load of the processor
    Thats strange for me the speed resets to default as soon as I restart my pc (about when the bios engages which is however tangibly after the graphics card fan revves up to its full speed). Depending on the temperature of the proccessor it goes to 3300rpm (less than 42c) or 4500rpm (too loud for ~45c IMO and MSIs "cool&quiet" option seems to agree, it doesn't even set it as high as 3300rpm)

  • How can I make my phone number active when viewing from a mobile device. My phone number is in my header in CSS

    How can I make my phone number active when viewing from a mobile device. My phone number is in my header in CSS

    See this support document http://support.apple.com/kb/HT5661

Maybe you are looking for

  • Finder no longer showing full file name of mp3

    How do i get finder to show me the full and complete file name (in my case, artist-title-label) for these mp3s? i can see the full name in the path at the bottom but i want to see it when i search it. My workflow with Ableton and creating text trackl

  • Can't paint at full opacity in layer mask in CS6 64 bit windows 7

    A problem has developed in my photoshop CS 6 64 bit on windows 7. I can't paint at full opacity in a layer mask. It is like an 75 % opacity brush. I have gone back to the default brushes soit is not the particular bursh. My brush settings are all at

  • Final Cut Studio 3 on a 2010 Mac Mini?

    Hi, I've searched the web high and low and can't find an answer to my question. Can the new Mac Mini dual 2.4 run Final Cut Studio 3? My main concern is the graphics card which SHARES 256mb ddr3 sdram. The Final Cut Studio 3 page says the hardware sh

  • PAYMENT ADVICE  ---  Very Imp and Very Urgent

    Hi experts We have and incoming EDI 820 coming from bank. We convert this EDI 820 to IDOC and generate an PAYMENT ADVICE. Once the Payment advice is generated, how to clear the open customer invoices. Please let me know the tcode for Automatic cleari

  • Creating check boxes in form

    How is this done in LifeCycle? I am unable to get them to work?? I am using Adobe Professional and creating the lifecycle form in there. Thanks!!