How can I get my Bookmark drop down list back?

I had to clear and restore my Macbook Pro and when I installed Firefox the drop down Bookmark menu is gone. I have the same version of Firefox on two computers and one has the drop down menu and this one doesn't. How do I get it back?

Do you mean the star on the location/address bar to bookmark the current page?
You can try to click the Restore Defaults button in the Customize palette.
Make sure that toolbars like the "Bookmarks Toolbar" are visible.
*"3-bar" Firefox menu button > Customize > Show/Hide Toolbars
*View > Toolbars<br>Tap the Alt key or press F10 to show the Menu Bar
*Right-click empty toolbar area
Open the Customize window and set which toolbar items to display.
*"3-bar" Firefox menu button > Customize
*check that "Bookmarks Toolbar items" is on the Bookmarks Toolbar
*if "Bookmarks Toolbar items" is not on the Bookmarks Toolbar then drag it back from the Customize palette into the Customize window to the Bookmarks Toolbar
*if missing items are in the Customize palette then drag them back from the Customize window on the toolbar
*if you do not see an item on a toolbar and in the Customize palette then click the Restore Defaults button to restore the default toolbar setup
*https://support.mozilla.org/kb/customize-firefox-controls-buttons-and-toolbars

Similar Messages

  • How can I make a bound drop-down list using OAF?

    Please note, this is for OAF. I am aware of the support in ADF.
    I'm sorry this is such a basic question, but I've been trying for days, and I can't think of anywhere else to look for an answer.
    I need a simple drop-down list, not a search. This particular list only has 10 or so items. It is based on a view containing a code value, and a description. I need all descriptions to be available at all times. Just click the arrow, and the entire list is displayed. When the user selects an entry, the code associated with the discription populates a bound attribute. Ideally, when the page is instantiated, the code value controls the text value visible in the collapsed drop-down list. Visually, it would be similar to an html <select> element.
    Can someone please tell me how I can produce such a simple thing, or point me to some documentation?
    Thank you.

    Thank you for the excellent reference Peddi. I had played with the OAMessageChoiceBean component yesterday, but I was able to tell from your instructions that "Picklist Display Attribute" and "Picklist Value Attribute" really are not for binding to the database EO. That was the key piece of information that had me confused.
    In addition to adding the messageChoice component to the page, I needed to write some code to synchronize the picklist value with the corresponding code value, which I placed in am OAFormValueBean (hidden form field) which I could then bind to my application's database EO in the controller, running in the processFormRequest procedure:
    /** Synchronize the catalog code with the selected catalog name */
    protected void syncCatalogValues(OAPageContext pageContext,
    OAWebBean webBean, MyApplicationAMImpl am) {   
    OAMessageChoiceBean mcb =
    (OAMessageChoiceBean) webBean.findChildRecursive("CatalogName");
    OAFormValueBean cc =
    (OAFormValueBean) webBean.findChildRecursive("CatalogCode");
    String catalogDescription = mcb.getText(pageContext);
    if (catalogDescription != null) {
    String catalogCode = am.getCatalogCode(catalogDescription);
    cc.setValue(pageContext, catalogCode);
    Along with a little code to get the catalogCode value from the LOVVO, that's all it took.
    Thanks again. This was a great help.
    Pete

  • How can I put JTree into drop-down List of JCombobox

    I want to create a drop-down list which shows a list of nodes. When the user clicks on a node, it should open to show the leafs. Clicking on a leaf should close the ComboboxPopup and show its value. Creating a renderer only represent my tree, but I can't trap the events.
    Here is my simplified code.
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.JTree;
    import javax.swing.tree.DefaultMutableTreeNode;
    import javax.swing.border.*;
    import java.util.*;
    public class ComboBoxTreeDemo  extends JPanel
         static JFrame frame;
         ComboBoxRenderer renderer;
         JTree tree;
         public ComboBoxTreeDemo()
              setLayout(new BoxLayout(this, BoxLayout.PAGE_AXIS));
              DefaultMutableTreeNode root =  new DefaultMutableTreeNode("top");
              DefaultMutableTreeNode sub1 =  new DefaultMutableTreeNode("sub1");
              DefaultMutableTreeNode sub2 =  new DefaultMutableTreeNode("sub2");
              root.add(sub1);
              root.add(sub2);
              tree = new JTree(root);
              String[] string = {"1" };
              JComboBox jcb = new JComboBox(string);
              renderer = new ComboBoxRenderer(this);
              jcb.setPreferredSize(new Dimension(100,22));
              jcb.setEditable(true);
              jcb.setRenderer(renderer);
              JPanel jpa = new JPanel();
              jpa.setLayout(new BoxLayout(jpa, BoxLayout.PAGE_AXIS));
              jpa.setAlignmentX(Component.LEFT_ALIGNMENT);
              jpa.add(jcb);
              add(jpa);
              setBorder(BorderFactory.createEmptyBorder(10,10,10,10));
         private static void createAndShowGUI()
              JFrame.setDefaultLookAndFeelDecorated(true);
              JFrame frame = new JFrame("ComboBoxTreeDemo");
              frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              JComponent newContentPane = new ComboBoxTreeDemo();
              newContentPane.setOpaque(true);
              frame.setContentPane(newContentPane);
              frame.pack();
              frame.setVisible(true);
          class ComboBoxRenderer extends JPanel implements ListCellRenderer
              ComboBoxTreeDemo cbt;
              public ComboBoxRenderer(ComboBoxTreeDemo cbt)
                   this.cbt = cbt;
                   setLayout(new BorderLayout());
                   add(cbt.tree);
              public Component getListCellRendererComponent(JList list,Object value,int index, boolean isSelected,boolean cellHasFocus)
                   return this;
         public static void main(String[] args)
              javax.swing.SwingUtilities.invokeLater(new Runnable()
                   public void run()
                        createAndShowGUI();
    }

    Thank you for the excellent reference Peddi. I had played with the OAMessageChoiceBean component yesterday, but I was able to tell from your instructions that "Picklist Display Attribute" and "Picklist Value Attribute" really are not for binding to the database EO. That was the key piece of information that had me confused.
    In addition to adding the messageChoice component to the page, I needed to write some code to synchronize the picklist value with the corresponding code value, which I placed in am OAFormValueBean (hidden form field) which I could then bind to my application's database EO in the controller, running in the processFormRequest procedure:
    /** Synchronize the catalog code with the selected catalog name */
    protected void syncCatalogValues(OAPageContext pageContext,
    OAWebBean webBean, MyApplicationAMImpl am) {   
    OAMessageChoiceBean mcb =
    (OAMessageChoiceBean) webBean.findChildRecursive("CatalogName");
    OAFormValueBean cc =
    (OAFormValueBean) webBean.findChildRecursive("CatalogCode");
    String catalogDescription = mcb.getText(pageContext);
    if (catalogDescription != null) {
    String catalogCode = am.getCatalogCode(catalogDescription);
    cc.setValue(pageContext, catalogCode);
    Along with a little code to get the catalogCode value from the LOVVO, that's all it took.
    Thanks again. This was a great help.
    Pete

  • How can I add categories to drop-down lists or check-boxes?

    hello can I use sub categories or group items by labels when using drop-down lists or check-boxes?

    You can't include sub-menus in a drop-down. What is possible, though, is to populate another drop-down based on the selection made in the first one, or use a pop-up menu. Both things require a script, though.

  • How can I get the airport drop down menu to allow me to enter a WPA2 Personal Password

    Powerbook G4, with Airport Card firmware 9.52. Through the System Preferences, Network, using the "edit" button, I can enter a WPA2 Personal password, but when I go to connect to the network, the drop down menu only allows me to enter a WEP Password.  And, obviously, I get an error message saying I have the wrong password. Why can I use WPA2 in the system preferences, but the airport menu doesn't then allow me to enter a WPA2 password to connect?

    Try Connect to Other... from the Airport menu.

  • How can I get my  complete iTunes library list back?

    I just downloaded a song from the iTunes Music Store. I don't know what I did, but now my screen only shows two recordings of the same song.
    1. I want my library screen to show ALL of my songs, preferably in alphabetical order, if that is possible.
    2. I want the songs to play in the order in which they are on the screen, if that is possible. How can I do this?

    The browser is very useful to find stuff.
    You can click in genre, Artist or Album and start to
    type what you're looking for. Or click on a song and
    start to type.
    Also, the Search box in the upper right
    I'm learning some little tricks, but the most important thing for me is to have All of the songs in one list. I now know how to do this when something happens to change this setting. Other than this, I admit that there are times that I want to see all of the songs asociated with one particular artist. I can now do that also. As to "genre" or "album," I have no interest. "Genre" seems to be a very subjective classification. I wish iTunes didn't have all of their unnecessary and subjective classifications. All I need are artists and songs, and I find them unnecesarily difficult to find in the iTunes Music Store, but that's another story.
    As to the search feature, I knew about it, but it only works when you don't have your songs broken down into so many categories. One list, that's all I need. "Most popular," "top 25," etc. are unnecesary and unwanted complications.

  • When I click on GBookmarks the menu doesn't drop down anymore. How can I get my bookmarks to show again?

    When I click on GBookmarks on the menu bar, my bookmarks don't drop down anymore. How can I get my bookmarks to show again? What shows up now when I click on the GBookmarks are 4 choices: Add bookmarks, manage bookmarks, options, and refresh. How can I get my menu of booksmarks to drop down again? I can go to manage bookmarks and then find my bookmarks, but it's a 3 step process now instead of one. What happened here?

    The reviews for the GBookmarks extension agree that there is some problem recently.
    https://addons.mozilla.org/firefox/addon/gbookmarks-google-bookmarks-fo/
    The support page lists an email address for support: http://www.suchisoft.com/ext/gbookmarks.php
    I ran a web search for other recent discussion and didn't come up with any answers. Hopefully the extension's author has time to look into it.

  • How do I get the complete drop down Menu?

    How do I get the complete drop down menu when I CTRL-Mouse click a folder. I am getting MORE in the bottom, and I need it to be removed.
    Thanks

    The "More" area in the contextual menu's are bothering quite a few people. It's a feature of Leopard and can't be removed. There may be a hack available, but I'm waiting for some help from Apple...
    It reminds me of the Personalized menu's that Microsoft enables by default in some versions of MS Office for Windows. And it's a feature that I turn off immediately after installing Office for a client.
    Two steps forward, One Back.

  • How can I enable the automated drop down for the subject line on the email page

    How can I enable the automated drop down for the subject line on the email page as I send more than 300 emails everyday with the same subject line. Before it use to happen in my gmail account but now its not. Please help me as its increasing my work time because I have to type the subject line again and again on each email I send. Please help me guys.

    This is usually caused by one or more bookmarks having a long title.
    You can check that folder in the Library and shorten long names.
    * Bookmarks > Show Al Bookmarks
    *Bug 626066 - History, Bookmarks menus too wide because of pages with long titles on 64bits
    <i>Please do not comment in bug reports: https://bugzilla.mozilla.org/page.cgi?id=etiquette.html</i>

  • How can I display images in drop down.

    Hi All,
    How can I display images in drop down.
    <select><option>image here</option></select>
    please reply soon.
    anser please
    Thanks

    I have not found html forum..That's just incredible.
    where can i find it ?Sorry, I'm still recovering from that remark.
    please reply soonEvery time you end a post with this, or "urgent" or other such keywords, the forum automatically introduces a 5 minute delay so that will actually make the whole process slower (not faster).

  • How Can I get my bookmarks From My Sync account without my sync key after a hard drive crash?

    My Computer Hard Drive crashed before I could back up my Sync Key or add another device. How can I get My bookmarks from my sync account without resetting the sync key and wiping my data?

    Not from Mozilla. Nobody knows your Sync Key except for you. <br />
    Is that hard drive usable at all? Like as an external disk in a USB hard drive enclosure?
    If so, you can recover your Firefox data from that drive. <br />
    http://support.mozilla.com/en-US/kb/Recovering+important+data+from+an+old+profile
    Your old Profile is located here in Vista & Win7: <br />
    ''drive'':\Users\''Windows login user name''\AppData\Roaming\Mozilla\Firefox\Profiles\''profile_name'' <br />
    Make sure that you unhide "Hidden files and folder" in the Control Panel > Folder Options -> View

  • How can I get firefox to shut down automatically when not in use for an hour

    How can I get firefox to shut down automatically when not in use for an hour

    Sorry, there is no feature for that built into Firefox, and I haven't seen an add-on to add that feature to Firefox.

  • How can I get my bookmarks onto my computer?

    I'm trying to get all of my Safari bookmarks on my iPad downloaded onto my computer and I thought Cloud was the only way to do that. I've already synced the iPad with Cloud but the only option that comes up is for me to "Merge bookmarks with the iCloud". It says that if I do that it will merge the information on my pc with the ones in Cloud. How can I get the bookmarks on my iPad to merge onto the Cloud?

    Hi Labtheis,
    If you are having issues using iCloud Bookmarks with your iPad, you may want to double check that Safari is enabled in the iCloud settings on your iPad. You may find the information and troubleshooting steps outlined in the following articles helpful:
    iCloud: Change iCloud feature settings
    iCloud: Troubleshooting iCloud Bookmarks and Reading List - Apple Support
    Regards,
    - Brenden

  • How can I get the old version of firefox back, I cannot play frontierville?

    How can I get the old version of firefox back, I cannot play frontier

    You can force 5.0 "compatibility" with the "[https://addons.mozilla.org/en-US/firefox/addon/add-on-compatibility-reporter/ Compatibility Reporter]" extension, or with [http://kb.mozillazine.org/Extensions.checkCompatibility extensions.checkCompatibility] using about:addons.
    For those that really need an earlier version of Firefox
    * ftp://ftp.mozilla.org/pub/firefox/releases/
    :or with the latest of version 3
    * http://www.mozilla.com/firefox/all-older.html
    When reinstalling Firefox from a download, Firefox must be down once the installation starts. When the installation finishes, don't let the install start firefox for you. Instead end the install and start Firefox in your normal manner, thus preventing creating a new profile which does not have your bookmarks cookies, etc (but your old profile would still be around and would).

  • How can I clear the browser pull down list, I have followed directions using options and it just won`t clear

    How can I clear the browser pull down list, I have followed directions using options and it just won`t clear

    Entries in the location bar drop down list with a yellow (blue on Mac) star at the right end are bookmarks.<br />
    You can remove such a bookmarked item that shows in the list if you open that url in a tab and click the yellow star in the location bar.<br />
    This will open the "Edit This Bookmark" dialog and you can click the Remove button to remove the bookmark if you want to remove such a bookmarked entry.<br />
    * [[Clearing Location bar history]]
    * [[Cannot clear Location bar history]]

Maybe you are looking for

  • Back up iphone to air port utility

    Is it possible to back up iphone 5s ios 8.1.2 to be backed up on air port time capsule, if yes how?

  • How do i import excel data base into pdf form drop down field

    Hi, I have a table of about 2500 rows and three columns that i would like to import into a drop down window on a PDF form to be self populated when item selected rather than entering the data. How can this be done? Thanks! Richard

  • Create new field in standard CNE5 alv report result

    Dear all, I would like to have a new report based CNE5 report, so I had copied RCNST000 to ZRCNST000. Now I would like to modify this new report. 1) To add additional fields (some from SAP standard and some fields are not from SAP standard)      - Le

  • PS document broken suddenly

    Hi all, Something really weird is happening with some documents or even layers in documents since the last update. It's not easy to explain so I'll try to do it with some screenshots. I've been using Photoshop for many years but this is new to me. I'

  • SSRS: Convert this matrix into a chart?

    I have this SSRS report, which is basically a matrix, and it's composed of Sum(Fields!Down.Value) (report detail), EmpId (rows), and Hour, Minute (columns). I've included a screenshot below. As you can see most of the values are 0, so I would like to