Add Downloads back to bottom bar

I accidentally removed "Downloads" from the bar at the bottom of my iMac. I thought I could just drag it back down there from Finder, but when I try, nothing happens.
How do I get "Downloads" back into the bar with my most commonly used apps? Thanks.

One method is to open Finder and then in the Finder sidebar right-click (Control click) on Downloads and then click on "Add to Dock"

Similar Messages

  • The bottom bar on my mail has disappeared which means I can't create, reply or forward to an email. Any ideas how to get it back? Touching the screen at the bottom doesn't work!

    The bottom bar in my email seems to have disappeared which means I can't create, reply or forward any emails. Any auggestions to how to get it back? Touching the bottom of the screen doesn't work. Thanks.

    Close all apps in the Multitasking Drawer; Double Tap Home Button to open drawer, Swipe up on each app to close it. Repeat until all apps are closed, touch home screen.
    Restart phone, hold both Home and Power/Sleep buttons down at the same time, continue to hold them down until the Apple Logo appears, Release both buttons and wait for phone to restart.
    Check email app to see if bottom bar and new email icon have come back.
    If not, delete the email account in settings and then add it back in again.
    If mail still not working as it should, you may try doing a Reset All Settings reset in Settings => General => Reset => Reset All Settings.  You won't lose any data, music, apps, videos,pictures, etc.  But you will have to go back in and turn on or off any settings you changed on your phone because everything will be set back to factory defaults.

  • I have a 10.2.8 os. I had opened up the AOL logo on the bottom bar. Two aol boxes came up. I can get them to go away for a short time and then they come back. I have not used AOL for 6 years. How can I get the boxes to go away?

    I have a 10.2.8 os on a G4 desktop. A week ago I clicked on the AOL icon in the bottom bar. I have not used AOL for six years. Two aol boxes came up. I can not get the boxes to go away for long. They may go away for 15 minutes and they come back  while I am working. How can I get these  aol boxes to go away?
    I will be upgading to Tiger; 10.4.

    Right click on the AOL icon and select move to trash.

  • I just put my Applications in the Trash.  How do I get it back on the bottom bar?

    I just put my Applications in the Trash.  How do I get it back on the bottom bar?

    Open the Trash by holding down the Trash icon then select Open.
    Then right or control click the Applications folder then click: Put Back

  • Add a toolbar to bottom of the page

    When I updated to V29.0, I lost the toolbar at the bottom of the browser. How do I add that back in. It contained a lot of information and it was easy to get to.
    Thank yoou

    You can put the vast majority of add-on icons on other toolbars (a handful of outdated add-ons will be missing their icons). If you still want an add-on bar at the bottom of the window, install The Add-on Bar. Don't install it if you already have an add-on that provides this functionality, like Classic Theme Restorer, Status-4-Evar or The Puzzle Piece.
    * [[What happened to the Add-on Bar?]]
    * https://addons.mozilla.org/firefox/addon/the-addon-bar/

  • DWM Bottom Bar Interface Patch

    NOTE: THE PATCH IS POSTED BELOW IN MY SECOND POST IN THIS THREAD. INSTRUCTIONS FOR FORMATTING THE ROOT WINDOW REMAIN THE SAME AS IN THIS POST.
    I modified the DWM code so that instead of one bar, it is possible to have two at the same time, one on the top and one on the bottom. They can both be hidden separately with key combinations and are managed by DWM, and so both act like normal status bars (i.e. windows behave properly around them). The top bar shows the standard DWM info, along with anything that is piped to the root window with xsetroot (as is standard). But if the bottom bar is enabled, a second bar shows up. This bar also shows information from the root window. If you were to want the text "this is the top" to appear in the top bar and "this is the bottom" to appear in the bottom bar, you would format it to the root window like so: "this is the topBOTTOM=this is the bottom".
    I was just asking to check if there is a demand for such a patch; if there is, I will clean up my version and post it here.
    Screenshot of the two bars "in action":
    http://img59.imageshack.us/img59/1943/t … enshot.jpg
    The scrolling breaking news on the bottom is another patch for conky that enables rss feeds to scroll on one line. If anyone wants this patch I will provide it as well.
    Moderator edit: read the rules on posting screenshots
    Last edited by .:B:. (2010-06-27 12:43:28)

    Alright, after a long while (sorry), here's the patch and instructions. First, download and extract (I had to compress it for the upload sites to work) this patch to a directory on your computer:
    http://www.mediafire.com/file/q2nq5mwml … ar.diff.gz
    The text of the patch is provided below ONLY FOR REFERENCE. The formatting is off and the patch ends up not working. Use the linked patch.
    diff -r fd72a695c7f2 -r 02377b01f0c6 dwm.c
    --- a/dwm.c Sat Feb 06 18:11:01 2010 -0500
    +++ b/dwm.c Sat Feb 06 18:17:56 2010 -0500
    @@ -125,6 +125,7 @@
    float mfact;
    int num;
    int by; /* bar geometry */
    + int bby; /* ADDED bottom bar geometry */
    int mx, my, mw, mh; /* screen size */
    int wx, wy, ww, wh; /* window area */
    unsigned int seltags;
    @@ -132,11 +133,16 @@
    unsigned int tagset[2];
    Bool showbar;
    Bool topbar;
    + // ADDED info on bottom bar
    + Bool showbottombar;
    + Bool bottombar;
    Client *clients;
    Client *sel;
    Client *stack;
    Monitor *next;
    Window barwin;
    + // ADDED bottom bar window pointer
    + Window bbarwin;
    const Layout *lt[2];
    @@ -242,6 +248,7 @@
    /* variables */
    static const char broken[] = "broken";
    static char stext[256];
    +static char btext[256];
    static int screen;
    static int sw, sh; /* X display screen geometry width, height */
    static int bh, blw = 0; /* bar geometry */
    @@ -505,6 +512,8 @@
    XUnmapWindow(dpy, mon->barwin);
    XDestroyWindow(dpy, mon->barwin);
    + XUnmapWindow(dpy, mon->bbarwin);
    + XDestroyWindow(dpy, mon->bbarwin);
    free(mon);
    @@ -553,6 +562,7 @@
    updatebars();
    for(m = mons; m; m = m->next)
    XMoveResizeWindow(dpy, m->barwin, m->wx, m->by, m->ww, bh);
    + XMoveResizeWindow(dpy, m->bbarwin, m->wx, m->bby, m->ww, bh);
    arrange(NULL);
    @@ -613,6 +623,9 @@
    m->mfact = mfact;
    m->showbar = showbar;
    m->topbar = topbar;
    + // ADDED monitor setup
    + m->bottombar = bottombar;
    + m->showbottombar = bottombar ? True : False;
    m->lt[0] = &layouts[0];
    m->lt[1] = &layouts[1 % LENGTH(layouts)];
    strncpy(m->ltsymbol, layouts[0].symbol, sizeof m->ltsymbol);
    @@ -723,6 +736,16 @@
    drawtext(NULL, dc.norm, False);
    XCopyArea(dpy, dc.drawable, m->barwin, dc.gc, 0, 0, m->ww, bh, 0, 0);
    + if (m->showbottombar)
    + {
    + dc.x = 0;
    + dc.w = TEXTW(btext);
    + drawtext(btext, dc.norm, False);
    + dc.x += dc.w;
    + dc.w = m->ww - dc.x;
    + drawtext(NULL, dc.norm, False);
    + XCopyArea(dpy, dc.drawable, m->bbarwin, dc.gc, 0, 0, m->ww, bh, 0, 0);
    + }
    XSync(dpy, False);
    @@ -1716,6 +1739,14 @@
    CWOverrideRedirect|CWBackPixmap|CWEventMask, &wa);
    XDefineCursor(dpy, m->barwin, cursor[CurNormal]);
    XMapRaised(dpy, m->barwin);
    + // ADDED drawing bottom bar
    + if (m->bottombar) {
    + m->bbarwin = XCreateWindow(dpy, root, m->wx, m->bby, m->ww, bh, 0, DefaultDepth(dpy, screen),
    + CopyFromParent, DefaultVisual(dpy, screen),
    + CWOverrideRedirect|CWBackPixmap|CWEventMask, &wa);
    + XDefineCursor(dpy, m->bbarwin, cursor[CurNormal]);
    + XMapRaised(dpy, m->bbarwin);
    + }
    @@ -1730,6 +1761,13 @@
    else
    m->by = -bh;
    + // ADDED geometry of window
    + if (m->showbottombar) {
    + m->wh -= bh;
    + m->bby = m->wy + m->wh;
    + }
    + else
    + m->bby = -bh;
    Bool
    @@ -1890,8 +1928,43 @@
    void
    updatestatus(void) {
    - if(!gettextprop(root, XA_WM_NAME, stext, sizeof(stext)))
    + char buftext[512];
    + if(!gettextprop(root, XA_WM_NAME, buftext, sizeof(buftext)))
    strcpy(stext, "dwm-"VERSION);
    + else {
    + // Parse input; currently delimited by BOTTOM=
    + char* blocation = strstr(buftext,"BOTTOM=");
    + if (blocation != NULL)
    + {
    + int c = 0;
    + for (char* i = buftext; i < blocation; i++)
    + {
    + if (c < sizeof(stext) - 1)
    + stext[c] = *i;
    + else
    + break;
    + c++;
    + }
    + stext[c] = '\0';
    + blocation += 7;
    + c = 0;
    + for (char* i = blocation; i < (blocation + sizeof(buftext)); i++)
    + {
    + if (c < sizeof(btext) - 1)
    + btext[c] = *i;
    + else
    + break;
    + c++;
    + }
    + btext[c] = '\0';
    + }
    + else
    + {
    + for (int i = 0; i < sizeof(stext); i++)
    + stext[i] = buftext[i];
    + stext[sizeof(stext) - 1] = '\0';
    + }
    + }
    drawbar(selmon);
    Now apply the patch (if you are using the tarball) by running
    patch -p1 < path/to/patch.diff
    Next, add the following lines to config.h:
    under the line "static const Bool topbar = True; /* False means bottom bar */" (keep in mind this must be true for this patch to be useful)
    put the following:
    static const Bool bottombar = True; /* True means an extra bar on the bottom */
    (This is used as your switch for turning the bottom bar on and off)
    IMPORTANT: so that you can show and hide the bottom bar with a keybinding do the following:
    before the keys[] array is declared, add the line:
    #include "togglebottombar.c"
    , next, in the keys array, add a line like the following:
    { MODKEY, XK_i, togglebottombar, {0} },
    Obviously, any key combo can be used. This hides the bottom bar with the modkey (mine is set to the windows or "super" key) and i.
    Finally, copy and paste this code into a file called "togglebottombar.c" in your dwm source directory:
    void togglebottombar(const Arg *arg) {
    selmon->showbottombar = !selmon->showbottombar;
    updatebarpos(selmon);
    XMoveResizeWindow(dpy, selmon->bbarwin, selmon->wx, selmon->bby, selmon->ww, bh);
    arrange(selmon);
    Now, format the text in your root window as described in the first post:
    assuming *TEXTONTOP* is text into the top bar and *TEXTONBOTTOM* is text into the bottom bar, you would format your root window text like this:
    *TEXTONTOP*BOTTOM=*TEXTONBOTTOM*
    For example, I have info on the top, and network info and news on the bottom (as shown in the screenshot thread).
    Last edited by RedScare (2010-02-09 03:19:38)

  • Kindle Fire bottom bar state detection

    Hi,
    Is there any way to detect if Kindle Fire's bottom bar is activated (shown) or not? Or even somehow form the application manually show/hide it without directly tapping on it. I know how to control Home, Back. Menu, Search buttons, but need to cotrol or at least know bottom bars state.
    Developing platform is Flash CS 5.5 - >Adobe Air 2.7 (preinstalled on Kindle Fire)
    Thanks in advance.

    I agree with Colin, don't worry about it, its a temporary pop up, if you are running in normal mode as opposed to full screen that bar is a permanent fixture and you can't add content past it anyway but when it pops up you just let it be, since the user is intentionally hitting the pull up window on the bottom of the screen, its much like the pull down task bar on iOS it comes in and covers your whole screen, obviously the user is trying to do something outside your app so let them. Can't imagine why you would need to account for that.
    Sorry I know that post was probably useless.

  • Why does the "downloading the latest applications" bar continually appearafter upgrading to Firefox 3.6.8?

    Why does the "downloading the latest applications bar" continue to appear after upgrading to 3.6.8?
    == This happened ==
    Every time Firefox opened

    See:
    http://support.mozilla.com/en-US/forum/1/732258?s=downloading+latest+application&as=s
    http://support.mozilla.com/en-US/forum/1/737414?s=downloading+latest+application&as=s
    <u>'''''Other Issues'''''</u>: ~~red:You have installed plug-ins with known security issues. You should update them immediately.~~
    <u>'''Update Java'''</u>: your ver. ~~red:1.5.0_06 (very, very old)~~; current ver. 1.6.0.20 (<u>important security update 04-15-2010</u>)
    (Firefox 3.6 and above requires Java 1.6.0.10 or higher; see: http://support.mozilla.com/en-US/kb/Java-related+issues#Java_does_not_work_in_Firefox_3_6 )
    ''(Windows users: Do the manual update; very easy.)''
    ~~red:Check your version here~~: http://www.mozilla.com/en-US/plugincheck/
    See: '''[http://support.mozilla.com/en-US/kb/Using+the+Java+plugin+with+Firefox#Updates Updating Java]'''
    Do the update with Firefox closed.
    <u>'''NOTE:'''</u> Java version 1.6.0.21 has been released. It is mainly an update for developers of Java applications and most users do not need to be concerned about downloading version 1.6.0.21. <u>'''''At this time'''''</u>, the update option in existing installations of Java 1.6.0.20 are not updating to version 1.6.0.21; <u>'''''at this time'''''</u>, it must be manually downloaded and installed. According to the Java release notes:
    ''"'''Bug Fixes'''''
    ''Java SE 6 Update 21 does not contain any additional fixes for security vulnerabilities to its previous release, Java SE 6 Update 20. Users who have Java SE 6 Update 20 have the latest security fixes and do not need to upgrade to this release to be current on security fixes."'' Source: http://java.sun.com/javase/6/webnotes/6u21.html
    <u>'''You '''</u>~~red:<u>'''MAY'''</u>~~<u>''' need to Update Adobe Reader for Firefox (aka Adobe PDF Plug-In For Firefox)'''</u>: your ver. N/A; current ver. 9.3.3 (important security update release 06-29-2010; see: http://www.adobe.com/support/security/bulletins/apsb10-15.html)
    ~~red:Check your version here~~: http://www.mozilla.com/en-US/plugincheck/
    See: http://support.mozilla.com/en-US/kb/Using+the+Adobe+Reader+plugin+with+Firefox#Installing_and_updating_Adobe_Reader
    ''<u>You may be able to update from the Adobe Reader installed on your system</u>'' instead of going to the Adobe site and downloading. Open the Adobe Reader installed on your system (''in Windows, Start > Program Files, find and click Adobe Reader to open''), click Help, click Check for Updates. Allow the download/update to occur. If you use this method, no need to proceed with the instructions below, <u>'''but'''</u> do look at the two bulleted items at the bottom "'''<u>NOTE for IE:</u>'''" and "Also see:". Restart Firefox and check your new version here: http://www.mozilla.com/en-US/plugincheck/
    ''<u>If you go to the Adobe site to download the current Adobe Reader:</u>''
    -'''<u>use Firefox to download</u>''' and <u>'''SAVE to your hard drive'''</u> (save to Desktop for easy access)
    ~~red:-See the images at the bottom left of this post to see the steps to take on the Adobe site~~
    -exit Firefox (File > Exit)
    -In Windows: check to see that Firefox is completely closed (''Ctrl+Alt+Del, choose Task Manager, click Processes tab, if "firefox.exe" is on the list, right-click "firefox.exe" and choose End process, close the Task Manager window'')
    -In Windows: double-click on the Adobe Reader installer you just downloaded to install/update Adobe Reader
    *<u>'''NOTE: On Vista and Windows 7'''</u> you may need to run the plugin installer as Administrator by starting the installer via the right-click context menu if you do not get an UAC prompt to ask for permission to continue (i.e nothing seems to happen). See this: http://vistasupport.mvps.org/run_as_administrator.htm
    *'''<u>NOTE for IE:</u>''' Firefox and most other browsers use a Plugin. IE uses an ActiveX version. To install/update the IE ActiveX version, same instructions as above, except use IE to download the ActiveX installer. See: [[ActiveX]]
    *Also see: http://kb.mozillazine.org/Adobe_Reader ~~red:'''''AND'''''~~ [[How do I edit options to add Adobe to the list of allowed sites]]

  • Bottom bar in flash player is all black - no controls!

    I'm put up a file at:
    http://shmuelkatz.com/expt3.htm
    And it does play my video, but the bottom bar of the flash player is all black.  Normally I would expect at least what youtube shows - which is a start button, a pause button, a 'maximize' button, and so forth.  But its all black.
    Any help is appreciated.
    Thanks,
    Gid

    I should add that I have been told that I'm doing everything correctly, and that I should switch away from using Flash to using the competing products instead.  I don't want to do that, because Flash is the standard, and my users might not want to download competing products that they never heard of. There seems to be no way to contact Adobe on this, since its not a paid-for product, but rather is a universally distributed free product.

  • Iphone mail app bottom bar is missing

    When i go into the mail app on my iphone 5 the bottom bar which has the reply, forward to buttons is missing. How do i get this back?

    All fixed! turned phone off and on again and it was sorted

  • How do I get rid of the blue "downloading the latest applications" bar which won't go away even after uninstalling and reinstalling Firefox?

    Can't get rid of the blue "downloading the latest applications" bar that seems to be just hanging and won't go away. I uninstalled and reinstalled Firefox, but the bar is still there after 2 days. I updated something (can't remember what!) on I.E., and it had the same blue bar, but it had a box I could x out of so it went away on I.E. I don't know why the blue bar is there on Firefox, as I did the update while on I.E.
    == This happened ==
    Every time Firefox opened
    == I updated an application while on Internet Explorer.

    Annette,
    #In the menu bar, at the top of the Firefox window, Go to Tools -> Add-ons -> Extensions.
    # Locate ''each ''of the following extensions by name and click the disable button
    #Restart Firefox as prompted and see if the undesired toolbar has been removed.
    #The extensions to disable are: '''Crawler Toolbar''', '''MP3 Rocket Toolbar''', '''MSN Toolbar''', '''Search Helper Extension'''
    If you don't need some / all of those toolbars, consider leaving them disabled.
    You can probably remove these toolbars permanently from Start -> Control Panel -> Add/Remove Programs.

  • My video i have successfully worked on for seven days now won't open at all.  It says there is no sequence of this type found... But in the very bottom bar I can see the whole project load.  But the only option from the error screen is exit out of Premier

    My video i have successfully worked on for seven days now won't open at all.  It says there is no sequence of this type found... But in the very bottom bar I can see the whole project load.  But the only option from the error screen is exit out of Premiere Pro CC.  I am on a PC withe Windows 8.1 and apps are up to date.  Thanks much for any help!!

    Hi Bryan,
    My video i have successfully worked on for seven days now won't open at all.  It says there is no sequence of this type found... But in the very bottom bar I can see the whole project load.  But the only option from the error screen is exit out of Premiere Pro CC.  I am on a PC withe Windows 8.1 and apps are up to date.  Thanks much for any help!!
    Sounds like an activation issue. Quite Premiere Pro. Sign out of Creative Cloud. Restart Premiere Pro. Sign back in: http://bit.ly/CC-sign-out
    Hope that works for you.
    Kevin

  • Itunes is no longer on the bottom bar on my laptop, where did it go?

    i have a macbook pro, i was listening to music on it yesterday and then shut it off and charged it. When i opened it and logged in today, itunes wasnt on the bottom bar, or any where else for that matter. I used to finder to locate the itunes folder, then i chose media file, then an artist, then i coudl reach itunes but only one song on itunes. How do i change it back to how it used to be?

    ITunes should be in you Applications folder.  Click on it (open it) and the icon will appear in your dock.  Click on the iTunes icon in the dock and hold the track pad and a menu will appear.  Select 'options' and then select 'keep in dock'.  That will keep it in the dock unless you delete it.
    Ciao.

  • I deleted my spam folder, how do I add it back?

    I accidentally deleted my spam folder. When I add it back its just a empty folder and none of my spam messages end up there anymore. How do I get that folder back to check spam?

    Thunderbird does not create or use a Spam folder. Your email provider might. Thunderbird used the term Junk for this type of mail to keep things separate from what the providers do.
    Is this an IMAP email account or POP account.
    With IMAP the folders are created and reside on the email server and you subscribe to the folders to view them. You subscribe to folders under the File menu on the Menu Bar.
    Deleted items usually end up in the Trash folder. Have you looked there.
    Log into your account at your email providers web mail page and see if the Spam folder is still there.

  • My timeline area has become huge - can't get at bottom bar

    I haven't worked on FCE for a while and when I got a project back up the timeline area has become way too big and I can't access the bottom bar. I have no idea how this happened or what to to. I've read the manual but there is no information on how to get rid of the unnecessary space above the video and under the audio. I don't want to make the tracks smaller, I just want to get rid of the empty unusable area, since I can't get to the bottom of the whole area to click on the tab that would help me narrow it. I find this very curious. I have tried all kinds of old projects and they all come up on this dreadful format of much too much area in the timeline. It's probably some dumb thing, but I need help. Thanks in advance.

    No point in reinstalling as the application is working correctly. With the selection tool if you go to the top edge of the timeline window the arrow should change into the resizining tool. This will let you resize the window. There is only so far you can resize it depending on your monitor resolution. If this is not working there is a problem with your system or your mouse.

Maybe you are looking for