How do I delete names from the drop down list when I login to gmail and facebook?

When I login to gmail and facebook several login names used in the past show up in a drop down list. I want to remove some of these names. How do I do that?

On Mac you need to use Shift+Delete
*http://kb.mozillazine.org/Deleting_autocomplete_entries
*Click the (empty) input field on the web page to open the drop down list
*Highlight an entry in the drop down list
*Press the Delete key (on Mac: Shift+Delete) to remove it.
*Firefox > Preferences > Security: Passwords: "Saved Passwords" > "Show Passwords"
*https://support.mozilla.com/kb/make-firefox-remember-usernames-and-passwords

Similar Messages

  • How do I delete something from the drop-down menu of the URL bar. I went there accidentally and don't want it in the list.

    I directly typed what I thought was the correct URL into the URL box. It took me to a site different from where I was wanting to go. Now that site's URL is in the list of URL's in the drop-down box. Is there some way of deleting this from the drop-down list? It seems to me that there used to be a way to do this--a small x on the right side of each site's URL in the list. After one of the updates this was no longer there.

    touch it with mouse, don't click, and press DELETE.
    tell us if this work for you, thank you

  • 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 to remove character names from the drop down

    I was writing off screen dialogue. Normally I would write  FRED (O.S.) but when I did this, Story treats it as a new character - different dot in the outline.  In trying to correct it I now have four different instances of the FRED character that pop up in the character drop down list. How can I make the ones I don't want go away?  How do I indicate a character is off screen without creating a new character?

    I hadn't noticed this as I use a (VO) tag under the character name rather than (OS) but this is a good point.  I agree, simply ignoring anything in parantheticals is a good way to go on this one.  It all goes to the same name then.  Good ideas.
    Not sure about all the formal formatting issues as I'm really an experimental filmmaker so I don;t get that involved int he formaities but can't you also simply write these as follows:
                                            JUDGE LAWLESS
                                                      (VO)
                             Why did Jesse go and shoot that old goat anyway?
    To represent his voice being heard over the scene.  Or is this indicitave of the person being physically on camera for the scene but overheard as an inner dialogue?
    Sean

  • When I delete a name from the address book it does not delete it from the drop down name menu when forwarding a message. How do I remove it from the drop down menu?

    When I delete a name from Address Book it is not removed from the name drop down list when forwarding a message. How can I remove it from the drop down list?

    In Mail go to the Window Menu and select Previous Recipients. Deleting entries from there won't delete them from your Address Book.

  • Unable to select IS from the drop down list in message mapping

    Hi,
    i  know that we can monitor 'Integration server' in message monitoring rather than choosing integration engine or adapter engine.
    But in our existing land scapes i am unable to select IS from the drop down list in message mapping.
    using PI 7.1 SP 08.
    please let me know that we need to set up additional configurations settings to select IS form drop down list.
    Regards,
    Pradeep A.

    Hi Pradeep,
    please let me know that we need to set up additional configurations settings to select IS form drop down list.
    There are no extra settings that needs to be done for this. I don't know whether you have noticed this, but IS option will only come up when you want to monitor the messages from the "Database" and not from the "Database overview" or "Archive".
    Regards,
    Neetesh

  • Hide Dashboard from the Drop Down list - OBIEE 11.1.1.6.2 BP1

    Hi,
    We have got an Index page, which contains links to all Dashboard the user is allowed to see and it is the home page for every user. Apart from that user's can select Dashboard from the drop down list. Is it possible to hide some of the dashboards from the drop down list but still users should continue accessing them from Index page?
    Thanks in advance.

    Hi,
    For showing the Dashboards as a drop down list I believe you are using HTML code. If so edit the HTML to remove the dashboards you do not want to see in the drop down.
    If the drop down is because of excessive pages shown on the dashboard then under the dashboard properties you can select the hide option for the dashboard. So by default the dashboard page would not show up and the index links would show.
    Let me know if this helped.
    Regards,
    Jay

  • How to delete addresses from the pop-down list in the "To" line ?

    Several times I have entered someones's address incorrectly in my address book. When I correct it at some later time, the incorrect one still appears in the pop-down list when I start typing the name in the To: line. Sometimes I don't look closely and the old, incorrect address gets entered (and then I never hear back from the person!). So how do I delete the incorrect ones? I've tried everything I can think of.
    Thanks.
    John

    Those are probably coming from your previous recipients list.
    Open Mail, Click on Window, Previous Recipents, and delete any that you don't want.
    - Wayne
    PowerMac G5   Mac OS X (10.4.8)  

  • To pass the selected data to a variable from the drop down list in abap wd

    Hi,
    I have already created a drop down list and populated it with data from table by using the node and linking it with the internal table. Now I need to know which element is selected so based on that I need to perform some function. eg. based on the selected data , i need to populate the next drop down list.
    A demo code will be really helpful.
    Thanks and Regards
    Tenzin

    Hi,
    On selcting the value from the drop down, we have one event ONSELECT.
    Write the code in this event.
    Get the attribute value to lV_xxxxxx using get attribute.
    then using that you can fill the next DDBK attribute.
    method wddoinit .
      data:
            lo_nd_spfli type ref to if_wd_context_node,
            lo_el_spfli type ref to if_wd_context_element,
            ls_spfli type wd_this->element_spfli.
      data:
          lv_carrid LIKE ls_sflight-carrid,
             itab_carrid type wd_this->elements_spfli,
             wa_carrid type wd_this->element_spfli,
             lo_nodeinfo_spfli type ref to if_wd_context_node_info,
             lt_value_set type wdy_key_value_table,
             ls_value_set type wdy_key_value.
      lo_nd_spfli = wd_context->get_child_node( name = wd_this->wdctx_spfli ).
      lo_nodeinfo_spfli = lo_nd_spfli->get_node_info( ).
      select carrid
        from spfli
        into corresponding fields of table itab_carrid.
      if sy-subrc = 0.
        sort itab_carrid by carrid.
        delete adjacent duplicates from itab_carrid comparing carrid.
      endif.
      loop at itab_carrid into wa_carrid.
        ls_value_set-key = wa_carrid-carrid.
        ls_value_set-value = wa_carrid-carrid.
        append ls_value_set to lt_value_set.
      endloop.
      lo_nodeinfo_spfli->set_attribute_value_set( name = 'CARRID'
      value_set = lt_value_set ).
    endmethod.
    in the event of first DDBK, write the select statement wsing where condition of lv_XXX.
    and append the record as above.
    Regards,
    sarath

  • Just started using Firefox; problem re log into New Yahoo; i have typed in my ID including several mistakes and i want to get rid of these from the drop down list that appears when i start to enter my ID. 'Clear History' does not seem to deal with this.

    OR even better stop the drop down list appearing altogether;

    Take a look here:
    https://support.mozilla.com/en-US/questions/871553
    thank you

  • Unable to clear the drop down list of junk login ID's - I have a Mac OSX

    When I go to sign into my yahoo ID, and I begin to type my e-mail account, a drop down list of junk log in ID's pop up. These are ID which I have entered my mistake in the pass. One of which is my password. I am unable to clear the drop down list of this junk log in ID's. I ask Yahoo how to do it and I was told that this problem is specific of my web browser. I need your help to clear that junk log in ID's. I have a Mac OSX, Version 10/4. Would you be able to explain simple what to do. This problem is annoying as every time I sign in that drop down list appear.
    I would appreciate your assistance.
    Sincerely,
    Socorro Bery

    good afternoon  Limnos i think  i didnt give the right info I didnt download well in a way i did i bought a copy of microsoft excel for mac 2004 i loaded on to my mac then i went and down loaded some software that said i needed to have excel you see my mac is osx 10.4,11 power pc G4 and that is were i had the problem now  the excell loaded allright but the the other programs did not the pop ups say it is not scriptable or can not read dictionary if you can help m,e iam not great with computers but i  along

  • Using a iPad.  How do you delete unwanted address from the drop down list.  I typed in a wrong address once, and now it keeps showing up.

    Using a iPad.  How do you delete unwanted address from the mail drop down list.  I typed in a wrong address once, and now it keeps showing up.

    Winfax1-
    Look in your Contacts App and see if the unwanted address is entered there.  If it is, you can delete it there.
    Fred

  • Open a new form based on the selection from the drop down list

    Good Morning Everyone,
    Can any one please advise how I can start to build the form that has a drop down list(DDL) to list other forms so the user can select one from the selection of that DDL to open a new form.
    e.g  A form in workspace ES3 with drop down list to list 3 forms: form1, form2, form3. When user select form1 from the DDL, then it will kick off the render servic to launch form1 in workspace ES3.
    Thanks in advance,
    HD

    Hi,
    I'm not surea about the data structure...Are there two ClassNodes, one for "VALVES" and one for "BOLTS"??
    and for scripting it is no good idea if the names of the attributes are value, don't know if this is your naming...
    but to access a node of the DATA view -->
    //var selection --> you have assigned "VALVES"
      var onodeCN =  xfa.resolveNodes("xfa.record.Classification.ClassNode[*].value");
    // get the node with the valves -->
                   for (var i = 0; i < onodeCN.length ; i++) {
                        if ( onodeCN.item(i).value == selection ) {
                                         //get the Leaves of Node VALVES
                                         var onodeVALS = xfa.resolveNodes("xfa.record.Classification.ClassNode[+i+].ClassLeaf[*].value");
                                         for (var j = 0; j < onodeVALS.length ; j++) {
                                           // insert values of Leave to 2nd drop down
                                XXX.addItem(onodeVALS.item(j).value, onodeVALS.item(j).value);
    ??works??
    norbert

  • Value need to select from the drop down list & should be save under Variant

    Hi,
    My requirement is that i need to display two values in drop down list of a selection screen. Between two values , one value will be display as a default value. During program execution user can choose any value from drop down list as per requirement and
    he can save this in a Variant.
    Next time if he choose data from Variant, but still he will be able to select any value from drop down list.
    For that i am using FM VRM_SET_VALUES. How can i make the changes to meet my requirement using this function module or any other suggestions will be highly appreciated.
    Thanks & Regards,
    Tutun
    Edited by: tutun nandy on Nov 19, 2010 12:21 PM

    Try to disable hardware acceleration in Firefox.
    *Tools > Options > Advanced > General > Browsing: "Use hardware acceleration when available"
    *https://hacks.mozilla.org/2010/09/hardware-acceleration/
    *https://support.mozilla.org/kb/how-do-i-upgrade-my-graphics-drivers
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • How do I delete contacts from the "to" suggested list that are not in my regular contacts?

    How do I delete a contact from the quick look up in the "to" box that is not in my Contacts folder?

    AFAIK - you cannot eliminate those contacts with the built in mail app on the iPad. There has never been a way to remove them that I have found in the 13 months that I have owned an iPad. You just have to ignore them.
    If you would like to make a suggestion to Apple about adding that feature in a future update, you can do so here.
    http://www.apple.com/feedback/ipad.html

Maybe you are looking for