How do I remove things from my bar at the bottom??

I have just bought my first mac and im struggling I have clicked 0n console, terminal, keychain access and grapher and theyve all stayed on the task bar at the bottom. How do I remove them??

Removing items from the Dock
To remove an item from the Dock, drag its icon off the Dock onto the desktop; the icon will disappear in a poof of smoke. Don't worry, you didn't permanently remove the item from your computer; you simply got rid of its Dock icon. If you want that item back on the Dock, you can easily locate the application, file, or folder in the Finder, and drag it back into the Dock. Keep in mind that there are some icons that you can't remove, such as the Trash and the Finder.
http://support.apple.com/kb/HT2474
Best.

Similar Messages

  • How can I remove things from the home screen

    How can I remove things from the iPad home screen?

    Hold down an icon until all icons start to wiggle.
    You then have two choices:
    1.  Drag the icon to the right so it goes to a different (non-home) screen.
    2.  If the icon is not supplied by Apple as part of iOS, you will see a small "X" in the upper left corner.  You can click that to delete the icon.
    Stop the wiggling by pressing the home button.

  • How do i remove something from favorite bar

    how do i remove something from favorite bar?

    click on your link you want to remove and Control click --> select delete.

  • How do I remove Bing from my toolbar at the top of the page. I have already tried both of the suggestions given in the help section; I could not find Bing in my control panel "add and remove programs," and there was one other suggestion which I also tried

    ''locking due the age of this thread - asked and answered''
    I have tried all of the suggestions given by FF in order to remove Bing from my computer but nothing seems to work. I would appreciate some advise. For instance when I go to add and remove programs I can't even find Bing listed. Looking forward to your suggestions. Thanks.
    == This happened ==
    Every time Firefox opened
    == I first installed Firefox

    Right click "Tools". Uncheck "Search Toolbars".

  • How can I remove or align play comand in the bottom of the movie?

    Hi guys,
    Does somebody knows how to remove or align the movie controls in the bottom of the movie?
    I insert an .aac file and added a pictures as the background of this sound.
    The problem is that the controls (play, pause, etc) are in in the middle, or better saying placed in front of the pictures and i would like to place it in the bottom or top position.
    Thanks in advance,

    Aha - I did it. Switch off Voice-over, then add a sorted playlist. Fingers crossed...

  • How do I get rid of a bar at the bottom of my screen in FireFox?

    I'm using FireFox 8.0 in Windows XP with all service packs.
    The website: www.washingtonpost.com,
    in it's major news stories, such as:
    http://www.washingtonpost.com/politics/mitt-romney-under-attack-in-final-nh-debate/2012/01/08/gIQAAOfHjP_story.html?hpid=z2#weighIn
    has started a line at the bottom of the Comments pages that it calls: @mentionmachine
    There have been howl's by readers since day one of this lines start but washington post has done nothing to get rid of it.
    Is there any way in FireFox to get rid of this stupid, line wasting "feature"?

    Thanks for the reply. I should have stated up front that am totally ignorant on programing and customizing stuff.
    I don't have a clue how to get to, find or open the file.
    I did look through all the selections on the fixfox bar at the very top of the page but didn't see anything called "chrome folder in the user profile folder".
    If it's simple for me, the "green horn" to get to please point me in the right direction.
    If it's any more complicated I'll just live with it.
    But, again thanks for your response.

  • How to detach refresh button from address bar in the new UI of FF29?

    IN FF28 it was possible to detach the refresh button from the address bar, but now the whole address bar is just one element. I am really used to have the button on the left side and not on the right side of the screen. I would love to have the opportunity back again to separate them!
    Best,
    Robin

    Firefox is just caught up in the industry wide disease of simplifying their user interface to satisfy the needs of mobile device users. It's probably true that they make up the vast majority of users. It is troubling that this trend ruins the experience for the few of us that still use powerful computers with huge and multiple display screens.
    As a developer of web pages, I often go through a cycle of looking at a web page I am developing, tweaking it, and refreshing the browser. No matter how many times I just proofread the content, I still find mistakes that need correction. So the view, correct, refresh cycle is so frequent that I need it to be efficient with well placed controls to accomplish the cycle.
    I don't mind making the GUI extremely simple for the majority of users, but I am upset with how often these "improvements" make it difficult for the experienced user/developer to use the tool in the way that suits them.

  • How to summarize a field from main window at the bottom

    I've a requirement in sapscript which is driven by standard program RVADOR01 to print certain quotation details.There is a field called tax code(kbetr) which
    is required to be displayed for each line item .
    Now i've also to summarize these tax code at the bottom of the page in another window.Here is the scenario
    In MAIN window:
    kbetr
      1     for 1st line item
      1     for 2nd line item
      2     for 3rd line item
      1     for 4th line item
      3     for 5th line item
      2     for 6th line item
    It have to summerise above tax code in FOOTER window as:
    kbetr
      1
      2
      3

    Hi anutosh,
    1. First check out if summary variables
       are already available in the standard drive program or not.
    2. Further to this, the TEXT ELEMENTS
      for printing the summary should also be available.
    3. This all logic / sequence of printing
       is absolutely
       contained in the driver program.
    4. If its not there,
       then probably u will have to
       copy the driver program,
       and do some enhancements/modifictiions.
    5. I don't think, by simply manipulating
       the sapscript layout, we can achieve this directly.
    regards,
    amit m.

  • Status Bar at the bottom of applet

    Hi,
    How can I get rid of Status bar at the bottom of an applet?
    I dont' wana see word "Java Applet Started". I have called
    JFrame.setDefaultLookAndFeelDecorated(true);
    Everything is fine, but the unwanted status bar at the bottom.
    Any help is greatly appreciated.
    Regards

    Howdy.
    Not sure what you are trying to achieve here. The appletviewer sounds like it is working as designed. If you are writing an applet then I'd assume that you intend for it to be accessed via a web browser. The appletviewer is simply a test mechanism.
    However, your concern about the way in which the appletviewer presents itself leads me to think that you are intending all users to run your app. using the appletviewer. If this is the case then why not just create the frame directly? This code does just that.
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class SimpleJFrame extends JFrame {
         public static void main(String[] a){
              SimpleJFrame cleanFrame = new SimpleJFrame();
         SimpleJFrame() {
              // user interface
              setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              setTitle("SimpleJFrame");
              Container cp = getContentPane();
              cp.setLayout(new FlowLayout());
              cp.add(new JButton("Press"));
              cp.add(new JTextField(8));
              pack();
              show();
    }regards
    sjl

  • When I plug my ipod in I am able to add song to it but the tab that says "on this ipod" no longer shows up so I cannot remove things from my ipod or anything like that. How do I change this weird setting?

    When I plug my ipod in I am able to add song to it but the tab that says "on this ipod" no longer shows up so I cannot remove things from my ipod or anything like that. How do I change this weird setting? On other computers this shows up fine so it is clearly a problem with itunes and not my ipod.

  • I have a macbook pro with OSX 10.9.3 and Safari 7.0.4. How do I remove BING FROM SEARCHING when i type something into the search bar

    I have a macbook pro with OSX 10.9.3 and Safari 7.0.4. How do I remove BING FROM SEARCHING when i type something into the search bar

    See below if the search engine setting was changed without your knowledge and you can't change it back.
    You installed the "Genieo/InstallMac" rootkit. The product is a fraud, and the developer knowingly distributes an uninstaller that doesn't work. I suggest the tedious procedure below to disable Genieo. This procedure may leave a few small files behind, but it will permanently deactivate the rootkit (as long as you never reinstall it.)
    Malware is constantly changing to get around the defenses against it. The instructions in this comment are valid as of now, as far as I know. They won't necessarily be valid in the future. Anyone finding this comment a few days or more after it was posted should look for more recent discussions or start a new one.
    Back up all data. You must know how to restore from a backup even if the system becomes unbootable. If you don't know how to do that, or if you don't have any backups, stop here and ask for guidance.
    Step 1
    In the Applications folder, there may (or may not) be an application named "Genieo". Genieo may be partially installed even if this item is absent. If it's present, select it and open the Finder Info window. If it shows that theVersion is less than 2.0, download and install the current version from the genieo.com website. This may seem paradoxical, since the goal is to remove it, but you'll be saving yourself some trouble as well as the risk of putting the system in an unusable state.
    There should be another application in the same folder named "Uninstall Genieo". After updating Genieo, if necessary, launch "Uninstall Genieo" and follow the prompts to remove the "newspaper-style home page." Restart the computer.
    This step does not completely inactivate Genieo.
    Step 2
    Don't take this step unless you completed Step 1, including the restart, without any error messages. If you didn't find the Genieo application, or if you couldn't complete Step 1 for any reason, stop here and ask for instructions.
    Triple-click anywhere in the line below on this page to select it:
    /Library/Frameworks/GenieoExtra.framework
    Right-click or control-click the line and select
    Services ▹ Reveal in Finder (or just Reveal)
    from the contextual menu.
    If you don't see the contextual menu item, copy the selected text to the Clipboard by pressing the key combination command-C. In the Finder, select
    Go ▹ Go to Folder...
    from the menu bar and paste into the box that opens by pressing command-V. You won't see what you pasted because a line break is included. Press return.
    A folder should open with an item named "GenieoExtra.framework" selected. Move that item to the Trash. You'll be prompted for your administrator password.
    Move each of these items to the Trash in the same way:
    /Library/LaunchAgents/com.genieo.completer.update.plist
    /Library/LaunchAgents/com.genieo.engine.plist
    /Library/LaunchAgents/com.genieoinnovation.macextension.plist
    /Library/LaunchDaemons/com.genieoinnovation.macextension.client.plist
    /Library/PrivilegedHelperTools/com.genieoinnovation.macextension.client
    /usr/lib/libgenkit.dylib/usr/lib/libgenkitsa.dylib
    /usr/lib/libimckit.dylib
    /usr/lib/libimckitsa.dylib~/Library/Application Support/com.genieoinnovation.Installer~/Library/LaunchAgents/com.genieo.completer.download.plist
    ~/Library/LaunchAgents/com.genieo.completer.update.plist
    If there are other items with a name that includes "Genieo" or "genieo" alongside any of those listed above, move them as well. There's no need to restart after each one. Some of these items will be absent, in which case you'll get a message that the file can't be found. Skip that item and go on to the next one.
    Restart and empty the Trash. Don't try to empty the Trash until you have restarted.
    Step 3
    From the Safari menu bar, select
    Safari ▹ Preferences... ▹ Extensions
    Uninstall any extensions you don't know you need, including ones called "Genieo" or "Omnibar," and any that have the word "Spigot" or "InstallMac" in the description. If in doubt, uninstall all extensions. Do the equivalent for the Firefox and Chrome browsers, if you use either of those.
    Your web browser(s) should now be working, and you should be able to reset the home page and search engine. If not, stop here and post your results.
    Make sure you don't repeat the mistake that led you to install this software. Chances are you got it from an Internet cesspit such as "Softonic" or "CNET Download." Never visit either of those sites again. You might also have downloaded it from an ad in a page on some other site. The ad has a large green button labeled "Download" or "Download Now" in white letters. The button is designed to confuse people who intend to download something else on the same page. If youever download a file that isn't obviously what you expected, delete it immediately.
    You may be wondering why you didn't get a warning from Gatekeeper about installing software from an unknown developer, as you should have. The reason is that the Genieo developer has a codesigning certificate issued by Apple, which causes Gatekeeper to give the installer a pass. Apple could revoke the certificate, but as of this writing, has not done so, even though it's aware of the problem. This failure of oversight is inexcusable and has compromised both Gatekeeper and the Developer ID program. You can't rely on Gatekeeper alone to protect you from harmful software.
    Finally, be forewarned that when Genieo is mentioned on this site, the perpetrator of the scam sometimes shows up under the name "Genieo support." He will tell you to run the provided uninstaller. As he knows and intends, the uninstaller does not completely remove the malware.

  • How can I remove something from my iTunes download list permanently?

    Same as title: how can I remove something from my download list FOREVA! Why would I want to do this? Because it's a piece of poo free sampler from Best Buy that is effing huge, and terrible and I don't want it, ever (it's been stuck to my list since 08, and it must die). Every time I buy something I have to remember to go and remove that from my list, otherwise iTunes gets caught up downloading that thing, which is many times larger than any video/cd/app that I have ever downloaded on iTunes before. It wouldn't be as much an issue if I had a good ISP but I don't, so any non-apple employee people giving some smarmy "get better internets" advice need not apply.

    Once an item enters the download queue, the user cannot remove it. Either let it complete the download (easiest) or contact the iTunes Store customer support department through the Contact page and ask them if they'll remove the item(s) from your queue for you.

  • How can i remove them from my purchased(no hidden them)and my account for ever?

    hello
    I got a few free app before and did not download them completely and dont want to do this,
    but they stay in my purchased and start automatly when i connect to itunes store and going to crazy me
    How can i remove them from my purchased(no hidden them)and my account for ever?
    (I want to delete all free apps and Books from my purchases.)
    please help me
    thank you.

    There is no way to do it. Others have asked for the very same thing that you are asking for, but currently it just cannot be done. You can't remover purchases from your Purchase History - you can hide them - but you can't delete them from the history.
    You can delete the Apps from the iPad and you can delete them from iTunes on the computer. Delete them from iPad, delete them fromiTunes so that when you sync there is no chance that they will come back. Then hide the purchases. That's the best that you can do.
    On the iPad, tap and hold down on the app icons until the X pops up. Tap the X to delete the apps.
    In iTunes, clcik on Apps under the Library heading on the left. Right click on the apps that you want to delete and follow the prompts.

  • How can i remove MacKeeper from my macbook air?

    How can i remove MacKeeper from my macbook air?

    Remove "MacKeeper" as follows. First, back up all data.
    "MacKeeper" has only one useful feature: it deletes itself.
    Note: These instructions apply to the version of the product that I downloaded and tested in early 2012. I can't be sure that they apply to other versions.
    IMPORTANT: "MacKeeper" has what the developer calls an “encryption” feature. In my tests, I didn't try to verify what this feature really does. If you used it to “encrypt” any of your files, “decrypt” them before you uninstall, or (preferably) restore the files from backups made before they were “encrypted.” As the developer is not trustworthy, you should assume that the "decrypted" files are corrupt unless proven otherwise.
    In the Finder, select
    Go ▹ Applications
    from the menu bar, or press the key combination shift-command-A. The "MacKeeper" application is in the folder that opens. Quit it if it's running, then drag it to the Trash. You'll be prompted for your login password. Click the Uninstall MacKeeper button in the dialog that appears. All the functional components of the software will be deleted. Reboot.
    ☞ Quit MacKeeper before dragging it to the Trash.
    ☞ Don't empty the Trash. Let MacKeeper delete itself.
    ☞ Don't try to drag the MacKeeper Dock icon to the Trash.

  • How can i remove items from list that have been deleted when i click on them it keeps showing empty

    how can i remove items from the list that have been deleted when i click on them it keeps showing folder empty

    Actually, Reader SHOULD keep showing documents that no longer exist, I disagree. It's no big deal, and people will quickly realise why they can't open the file. They open more files, the old ones move off.
    The REASON why it should not check is that checking whether a file exists can take a long time when things aren't good. For instance if a file server goes down, or a memory card is unplugged. That in turn would mean delays opening the File menu, and I've seen some software that can sit there for several minutes. That would really give people something of which to complain...

Maybe you are looking for

  • Ipod touch problem with video

    i am not able to synchronize/add video songs in itouch ipod

  • SOAP:1.026 SRT: HTTP-Code 500: ("Internal Server Error")    Exception of class CX_AI_SYSTEM_FAULT

    Hi All,         while Running Client Proxies from se80 im getting Following error. i already checked all the Services All are active only. can any one suggest me: SOAP:1.026 SRT: HTTP-Code 500: ("Internal Server Error") Exception of class CX_AI_SYSTE

  • Missing only one import from the RePast libraries

    I'm getting an odd error message: package uchicago.src.sim.topology.space2 does not exist. package Model; import java.util.Formatter; import uchicago.src.sim.util.*; import uchicago.src.sim.gui.*; import uchicago.src.sim.space.Object2DTorus; import u

  • Trouble With New Album Download

    I purchased an EP for the first time this morning and the purchase went through, the songs are in my library, but the songs won't play. Any idea what's going on?

  • 0PLANT Level Authorizations

    Hi Guru's,        I have a query regarding Object level Authorizations i.e i have created one query with variable Plant now i need to rollout to single query to all plants and respective person only can able to view their plant values....so i need to