How can I delete addresses from the awesome bar?

No other details.

Use these steps to remove saved (form) data from a drop-down list:
#highlight an entry in the drop-down list
#press the Delete key (on Mac: Shift+Delete) to remove it.
*http://kb.mozillazine.org/Deleting_autocomplete_entries
See also:
*https://support.mozilla.org/kb/Clearing+Location+bar+history
*https://support.mozilla.org/kb/Cannot+clear+Location+bar+history

Similar Messages

  • In Mail 3.6 how can I delete address from the drop down menu?

    When I update an email address in the Address Book, the drop down menu in a new email is still the old address.

    I think I figured it out. I have to click on the arrow beside the smart address in a new email and delete it there. I tried removing previous recipients but without success. I'm not sure what the name of my software is. Maybe snow leopard. How can I find that?
    Thanks for the suggestion and it probably helped a lot of other users and would have helped me if I knew the software.

  • How can I delete apps from the app store? There seems to be every app I have ever downloaded and deleted since I got my phone in 2007. When I go to app store and select update apps there's a menu at the top that says purchased! I would like to delete hist

    How can I delete apps from the app store? There seems to be every app I have ever downloaded and deleted since I got my phone in 2007. When I go to app store and select update apps there's a menu at the top that says purchased and when I select it it shows every app I've ever had! I would like to delete the history please.
    Many thanks

    You cannot.
    The entire point of this is that you can redownload any and all of your past purchases.

  • How can I delete icons from the desktop? every time I open a application (e.g. skype) the icon goes to the desktop

    how can I delete icons from the desktop? every time I open a application (e.g. skype) the icon goes to the desktop

    to remove the HD icon
    In Finder's Preferences pane, in the General tab, uncheck "Hard disks" under "Show these items on the Desktop" to clear away the icon.

  • How can I delete apps from the app store that I don't want?

    How can I delete apps from my apps list that we downloaded and still show up in our acct.?

    That's crazy!  My husband downloaded some free adult apps to his phone and deleted them from his phone and thought they were gone....  Argghhh!  I'm so frustrated!

  • How can I delete events from the iPad calendar?

    I can add events although not particularly user friendly. I cannot seem to remove them and/or just reset the whole calendar. At this point, I'll just use my trusty paper planner! I did try searching the forums and looking in the deficient iPad manual. Thanks in advance.

    The links below have instructions for deleting photos.
    iOS and iPod: Syncing photos using iTunes
    http://support.apple.com/kb/HT4236
    iPad Tip: How to Delete Photos from Your iPad in the Photos App
    http://ipadacademy.com/2011/08/ipad-tip-how-to-delete-photos-from-your-ipad-in-t he-photos-app
    Another Way to Quickly Delete Photos from Your iPad (Mac Only)
    http://ipadacademy.com/2011/09/another-way-to-quickly-delete-photos-from-your-ip ad-mac-only
    How to Delete Photos from iPad
    http://www.wondershare.com/apple-idevice/how-to-delete-photos-from-ipad.html
    How to: Batch Delete Photos on the iPad
    http://www.lifeisaprayer.com/blog/2010/how-batch-delete-photos-ipad
    (With iOS 5.1, use 2 fingers)
    How to Delete Photos from iCloud’s Photo Stream
    http://www.cultofmac.com/124235/how-to-delete-photos-from-iclouds-photo-stream/
     Cheers, Tom

  • How can I delete plugins from the "edit with" menu?

    I recently downloaded severals demos and trial versions of numerous softwares and plugins. They have recently expired and I'm wondering how I can delete them from the "edit with" menu. I have so many I forget which are licenced and which are trials that have expired. Please help.
    Mark W.

    ./Library/Application Support/Aperture/Plug-Ins or
    /Library/Application Support/Aperture/Plug-Ins
    I just delete the folder of the plugin I want to get rid of.

  • How can you delete items from the cloud?

    I am trying to delete some items from the cloud but can't figure out how. Does anyone know how.

    You can see what your iCloud storage is used for and delete any unwanted content at settings > iCloud > Backup & Storage > Manage...... on your iOS device. Or System Preferences > iCloud > Manage...... on a Mac.
    You have 3 options......
        1.    Purchase more iCloud storage.
        2.    Delete data or back ups that are being stored in iCloud already.
        3.    Turn off items to be included in the next back up to reduce its size.

  • How can i delete apps from the purchased list?

    i have apps from like a while ago, and i deleted them, but with apples new "purchased" feature, you are able to see everything.
    How do i delete them???

    HI,
    If you're talking about making changes to your Purchase History... You can't...
    If you mean Deleting Apps... See here:
    How do I remove an application from my device?
    Select your device on the left side of the iTunes window.
    Click the Applications tab.
    Select Sync applications.
    Click the Selected applications button.
    Deselect the applications you wish to remove.
    Click Apply.

  • How can I delete messages from the local Sent folder without deleting from the remote server?

    I am running out of disk space on my local machine. Analysing this, I can see that a large amount of space is being taken up by local storage of Sent emails from my IMAP synchronised account.
    I do not see how I can delete the local copies from my PC without them being deleted from the Server as well. There is an account setting option under Synchronisation and Storage to delete messages, but it says they will be deleted from both the local machine and the remote server.
    I need to keep the server versions as these are business accounts and it is important I have all my old messages stored somewhere.

    Short answer: get a bigger hard disk.
    You could disable synchronization and free up the space on your local disk without loosing the messages. However, this would eliminate the possibility to create backups of your messages.<br>
    Since you mentioned this is important business mail, you shouldn't take chances.

  • How can I delete Documents from the KD?

    The documentation regarding deleting documents is poor! Can someone show me how to do this programmatically? I've been trying something like the following Web Service below:
    <WebMethod(Description:="This function will retrieve delete specified documents by CardID from the Plumtree Knowledge Directory. Excepts Plumtree CardIDs As ArrayList, Returns a Boolean (Success/Failure).")> _
    Public Function PTDocDelete(ByVal PTCardIDs As ArrayList) As Boolean 'Instantiate Plumtree Remote Session Dim IPTRemoteSession As IRemoteSession IPTRemoteSession = RemoteSessionFactory.GetExplicitLoginContext(New System.Uri("http://mymachineName.com/ptapi/QueryInterfaceAPI.asmx"), "Administrator", "")
    'Query the Plumtree Document Manager passing in the Folder ID Dim PTDocumentManager As IDocumentManager = IPTRemoteSession.GetDocumentManager() Dim i As Integer
    Dim arrPTCardIDs As Array arrPTCardIDs = PTCardIDs.ToArray() 'Convert ArrayList to a 1-Dimensional Array
    Try 'Loop throught the CardIDs and Delete them For i = arrPTCardIDs.GetLowerBound(0) To arrPTCardIDs.GetUpperBound(0) PTDocumentManager.RemoveDocuments(arrPTCardIDs(i)) Next Catch pe As PortalException Return False 'Failure! End Try
    Return True 'Success!
    End Function

    You mean the Photo Library? You delete pics that were synced to your phone the same way they got there, through the iTunes sync process. Remove the checks next to the albums/folders that were synced to your phone, hit the apply/sync button & they will be removed from your phone. The only pics that can be deleted directly on your phone are pics in your camera roll.
    If you mean delete the Photo Library itself, you can't delete that. All photos synced to your phone reside in the Photo Library...the various albums/folders merely contain pointers to the actual photos, which are in your Photo Library. They are not duplicates. This is similar to the way that iPhoto on a Mac organizes photos.

  • How can I delete podcasts from the Apple TV podcast menu on my television?

    There are podcasts that I prefer my kids not know I listen to...they are gone from iTunes yet they appear on the Apple TV menu and I can't seem to figure out how to delete them?  Is it possible?  Thanks!

    Helo utahskierdave,
    Welcome to the Apple Support Communities! 
    I understand that you would like to delete podcasts from your Apple TV that have already been deleted from iTunes. In this situation, I would recommend reading over the following post and using the troubleshooting steps within. 
    Deleted Podcasts still show up | Apple Support Communities
    Best regards,
    Joe 

  • How can i remove history from the menu bar?

    I don't want the option "history" showing on the menu bar, how can i remove it?

    Add code to [http://kb.mozillazine.org/UserChrome.css userChrome.css] below the @namespace line.
    <pre><nowiki>@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */
    #history-menu { display:none!important; }
    </nowiki></pre>
    * http://kb.mozillazine.org/Editing_configuration
    * ChromEdit Plus: http://webdesigns.ms11.net/chromeditp.html

  • How can I delete words from the "Replace list" on my Mac without deleting them in "Keyboard Shortcuts" on my iPhone?

    I have scoured the internet but I have not been able to find a solution for this issue. It seems my "Replace list" and "with list", or "Keyboard Shortcuts" as it's called on the iPhone (Where to find it on a Mac ; Where to find it on an iPhone) migrated from my iPhone (iOS 8.1.2) to my Macbook (OSX Yosemite 10.10.1) when I logged in with my iCloud account.
    I really, really don't want this feature on my computer but I do want it on my phone. However, whenever I delete words on my computer they get deleted from my phone and vice versa. Is there any way to disable this on my computer? This is what my settings look like now:
    It seems like other people must not be bothered by this since I can't find anything about it online... but it's driving me nuts. And I've disabled autocorrect in my settings and for the programs I use but it happens no matter what. Is the only solution to this logging my computer out of my iCloud account? I can't believe there is no other way around this...
    Thanks in advance for your help!

    Hi,
    Of the items you have left in iCloud that are syncing the "Notes" one might be the most logical.
    In some cases items in Accessibility can effects things like this but I see no obvious candidates.
    9:31 pm      Wednesday; April 8, 2015
    ​  iMac 2.5Ghz i5 2011 (Mavericks 10.9)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
     Couple of iPhones and an iPad

  • How can I remove icons from the menu bar?

    Help tells me to hold down the command key and drag the icon off the bar. But all that happens is that a dropdown menu appears which lists various actions which can be performed by the application. None of the actions listed include deleting the icon. When I try to drag the icon (still holding the command key down) it does not move at all.
    I am running OS X 10.7.4.

    Do you mean the screen's menubar or the Finder's toolbar? Would you take a screen snapshot of what you are trying to remove? Some menubar icons are generated by the application and cannot be dragged out. Instead you have to quit the application that installs the item. I suspect this applies in your case.

Maybe you are looking for