Cannot customize toolbars by dragging/dropping buttons

I enable the Customization mode by clicking on "Customize..." in the right-click popup menu of a toolbar. Firefox enters the customization mode just fine. I can grip any existing toolbar button (the cursor changes to the hand wnen I am over it), then I can drag this button... Oops! The only place I can drop it is exactly its old position! Elsewhere, the cursor changes to that crossed ring that means no. Cannot drag buttons between toolbars, cannot pick up buttons from the well in the middle of the screen and place them, cannot remove buttons, cannot rearrange. The only thing I can do is to take a button for a walk, and drop it back where it was.
Is is a known problem with a known fix?
Firefox 31.3.0 esr on Windows 7 64 bit.

What about right-clicking the useless button and then choosing Remove from Toolbar?
The controls on the main toolbar are stored in a preference in about:config, but it could be messy to edit...
(1) In a new tab, type or paste '''about:config''' in the address bar and press Enter. Click the button promising to be careful.
(2) In the search box above the list, type or paste '''cust''' and pause while the list is filtered
(3) Double-click the '''browser.uiCustomization.state''' preference and copy the contents, then paste into Notepad or another text-editor of your choice.
The part after "nav-bar": lists the current buttons on the bar. I tested changing the order of two controls and pasting that back and then launching a new window, but nothing was different. I don't want to restart Firefox right now, so this test is indeterminate.
Perhaps it would be useful to "reset" the toolbar layout? In Customize mode, click the Restore Defaults button on the bottom line of the dialog. Does that let you operate the customize feature more normally?

Similar Messages

  • Cannot customize toolbar.

    On my iMac, when I make changes to Safari's toolbar via View>Customize Toolbar, any changes I make are not retained after Safari quits. Upon relaunch of Safari the customized toolbar is viewable for about 1 second, then it suddenly reverts to the default view. So obviously, the changes to the toolbar are being saved, but then overwritten a few moments after Safari launches.
    Has anyone else seen this behavior or have any troubleshooting tips?
    Message was edited by: jjs1138
    Message was edited by: jjs1138

    Between my last reply and and sitspotsit's suggestion, it occurred to me that I had specified that my iMac was affected, but in fact I had not checked my Air for this issue. I tried to customize the toolbar on the Air and found that I had the same problem there. The most obvious common link between the iMac and the Air is that they both have the Evernote plugin installed.
    I disabled the plugin and found the normal Safari behavior returned. I was about to settle on the fact that I was going to have to leave the Evernote plugin disabled, but then I read sitspotsit reply.
    Just on a whim, I installed the Evernote plugin again, the problems returned. I then deleted the Safari pref file with the Evernote plugin still installed. Upon launching Safari again I found that Safari now functions correctly as well does Evernote.
    It seems that while installing, the Evernote plugin corrupts the Safari pref file, but if you delete the pref file after install of the Evernote plugin, the new pre file is corruption free.
    I hope this info may be of use to other users. And thanks to sitspotsit for setting me on the right path.
    Message was edited by: jjs1138
    Message was edited by: jjs1138
    Message was edited by: jjs1138

  • Cannot cut/paste or drag/drop

    I have just upgraded to Lightroom 2.1 on my Mac so I hope that this isn't a dumb question -
    After the upgrade I cannot drag and drop any image to a collection. The cut/paste options are gray so I cannot choose them and I cannot seem to move any image from within a collection. All of these worked fine with the previous version of Lightroom.
    I have tried with a brand new Catalogue - same problem - I have tried with a new catalogue on a different hard disk - same problem!
    I can edit the images - but I just cannot drag them in the same way that I did with Lightroom before. I have searched the knowledge base with no answers as yet.
    I do hope that I am just forgetting something!

    Hi John,
    Yes, I am dragging from the image itself - exactly as I used to in 1.4
    It is odd, but it is as if there is a permission problem with the file - but I am allowed to edit.
    I would have thought that it might be a problem in drag and drop but the fact that the cut and paste options are gray too is a bit confusing.

  • Safari 4.0.3 CANNOT customize toolbar !?

    Hello,
    On my new iMac 24inches I cannot have Safari keep the changes I do in the toolbar : as soon as I quit the application, changes are lost !?
    I tried (per another post) to check the "input managers" folder in Library but cannot delete anything from there : the system refuses to do so.
    I have there one folder "crash reports" and one from 1Password (a third party application for password managing in browsers).
    I cannot change nothing there and the toolbar customisation is not kept when I leave Safari.
    On my other new MB AIR, everything works fine but I donot have this "input manager" folder in my library.
    Can someone help me please ?
    Thanks

    Hi,
    Delete 1Password. Users are reporting incompatibility issues with Safari 4.0.3.
    If that doesn't help, to go Safari/Preferences. Make note of all the preferences under each tab then
    delete this file.
    com.apple.Safari.plist
    ~/Library/Preferences.
    Move that file to the Trash and restart your Mac.
    Carolyn

  • When I check my e-mail,the toolbar with the delete button is gone. How do I restore it?

    How do I restore it?

    Under View in the Mail  Menu bar go to customize toolbar and drag what you want back down to Mail toolbar.

  • Faking Drag&Drop operation to external application

    Hello,
    a rather complicated issue. in my program i have a JTable, and i can drag&drop from this jtable
    to external programs like windows explorer by clicking the mouse and moving it from the table
    to the external program.
    how can i reproduce this exact behaviour WITHOUT user intervention?
    in other words, how can i do this programmatically, creating a drop source at the start point,
    then move the mouse, and release it above a specified location on the screen?
    is this even possible in java (as we're running in a VM) ?

    it has it's problems.
    for example, if the drop point is above the source point, moving the mouse with the robot sometimes marks all entries in the table instead of performing a drag&drop operation. also, it seems that without a delay between the moves, strange things happen. so here is an updated version which workes 99% flawlessly for me.
    package trakker;
    import java.awt.Point;
    import java.awt.Robot;
    import java.awt.event.InputEvent;
    import java.util.logging.Level;
    * this thread fakes a drag & drop operation to the traktor decks
    public class LoadDeckThread implements Runnable
         Point source;          // where was the mouse pointer before operation?
         Point track;          // where is the point of the track in the jlist?
         Point target;          // where do we move the track to?
         // constructor
         public LoadDeckThread(Point pTrack, Point pSource, Point pMoveTo)
              track = pTrack;
              source = pSource;
              target = pMoveTo;
         // thread run
         public void run()
              try
                   // create a new robot
                   Robot robot = new Robot();
                   robot.setAutoDelay(100);
                   // move the mouse to the track in the jlist
                   robot.mouseMove(track.x, track.y);
                   // click and hold
                   robot.mousePress(InputEvent.BUTTON1_MASK);
                   robot.waitForIdle();
                   // move to the left to prevent list scrolling
                   robot.mouseMove(50, target.y);
                   // and to the topleft of our app
                   Point p = Util.mainWnd.getLocation();
                   robot.mouseMove(p.x, p.y);
                   // move the mouse to the specified deck
                   robot.mouseMove(target.x, target.y);
                   // wait some time (otherwise it doesn't work?)
                   //robot.delay(500);
                   robot.waitForIdle();
                   // release the mouse
                   robot.mouseRelease(InputEvent.BUTTON1_MASK);
                   robot.waitForIdle();
                   // move back to the track
                   robot.mouseMove(track.x, track.y);
                   robot.waitForIdle();
                   robot.mousePress(InputEvent.BUTTON1_MASK);
                   robot.mouseRelease(InputEvent.BUTTON1_MASK);
                   // now move back where we were
                   robot.mouseMove(source.x, source.y);
                   robot.waitForIdle();
                   robot = null;
              catch(Exception ex)
                   Util.log("Cannot invoke robot for drag&drop: " + ex.getMessage(), Level.SEVERE);
    } instead of to close tags ;=)                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • I have 9.0.1 on 2 pc's, both xp sp3. On 1 the 'open new tab' button is visible, on the other, the 'open new tab' button is not even available in the 'customize toolbar' menu for dragging and dropping. Why?

    I used the same installation file, but on 1 pc, the 'open new tab' button is available in the 'customize toolbar' menu and can be dragged and dropped onto the navigation bar. On the other pc, the 'open new tab' button/icon is not even available for dragging and dropping. I uninstalled firefox completely, including settings and preferences, then reinstalled, but that did not correct the missing button.

    Hi,
    Please try '''Restore Default Set''' in the '''Customize...''' window. If it's still not visible, one reason could be that the button is already placed on the toolbar but may be hidden behind another icon or toolbar.
    Useful links:
    [https://support.mozilla.com/en-US/kb/Options%20window All about Tools > Options]
    [http://kb.mozillazine.org/About:config Going beyond Tools > Options - about:config]
    [http://kb.mozillazine.org/About:config_entries about:config Entries]
    [https://support.mozilla.com/en-US/kb/Page%20Info%20window Page Info] Tools (Alt + T) > Page Info, Right-click > View Page Info
    [https://support.mozilla.com/en-US/kb/Keyboard%20shortcuts Keyboard Shortcuts]
    [https://support.mozilla.com/en-US/kb/Viewing%20video%20in%20Firefox%20without%20a%20plugin Viewing Video without Plugins]
    [http://kb.mozillazine.org/Profile_folder_-_Firefox Firefox Profile Folder & Files]
    [https://developer.mozilla.org/en/Command_Line_Options#Browser Firefox Commands]
    [https://support.mozilla.com/en-US/kb/Basic%20Troubleshooting Basic Troubleshooting]
    [https://support.mozilla.com/en-US/kb/common-questions-after-upgrading-firefox-36 After Upgrading]
    [https://support.mozilla.com/en-US/kb/Safe%20Mode Safe Mode]
    [http://kb.mozillazine.org/Problematic_extensions Problematic Extensions]
    [https://support.mozilla.com/en-US/kb/Troubleshooting%20extensions%20and%20themes Troubleshooting Extensions and Themes]
    [https://support.mozilla.com/en-US/kb/Troubleshooting%20plugins Troubleshooting Plugins]
    [http://kb.mozillazine.org/Testing_plugins Testing Plugins]

  • The bookmarks toolbar is there but has no item buttons on it. How do I get the items back for this toolbar? Also would like to know if the toolbars can be put on the same line to make more room on the page (drag & drop) ??

    The bookmarks toolbar is there but has no item buttons on it. How do I get the items back for this toolbar?
    Also would like to know if the toolbar can be put on the same line to make more room on the page (drag & drop) ?? Like the menu & bookmarks toolbar could/should fit on same line. This would add more page view...
    Floyd Perry
    Thanks

    Check that you still have the "Bookmarks Toolbar items" placed on the Bookmarks Toolbar
    * Make sure that you have the "Bookmarks Toolbar" visible: "View > Toolbars"
    * Check in "View > Toolbars > Customize" that the "Bookmarks Toolbar items" is on the Bookmarks Toolbar
    * If the "Bookmarks Toolbar items" is not on the Bookmarks Toolbar then drag it back from the Customize window onto the Bookmarks Toolbar
    * If you do not see the "Bookmarks Toolbar items" then click the "Restore Default Set" button
    You can only move the content from a toolbar onto other toolbars if all toolbars support that feature. You need to check that in the options of each toolbar.

  • How to drag and drop button between two toolbar?

    Hi,everybody :)
    i hava a problem :
    if i have two toolbar in a frame , and there are some button in each, how can i use dnd package to drag and drop button between two toolbar,such as drag one button in a toolbar to the other toolbar ,i write some sample code ,but find some difficult to finish
    can anyone give me some example code?
    Thanks!

    hi:)
    i have done it ,but there is another problem ,after i finish drag the button and drop it into the toolbar,if my mouse across the dragged button ,it will change the color ,can i setup any mathod to disappear the side_effect?
    thank u
    click open to show the other frame
    and the code is as follows:
    import java.awt.*;
    import java.awt.datatransfer.*;
    import java.awt.dnd.*;
    import java.awt.event.*;
    import java.io.*;
    import javax.swing.*;
    public class buttondrag implements DragGestureListener, DragSourceListener,
    DropTargetListener, Transferable{
    static JFrame source = new JFrame("Source Frame");
    static JFrame target = new JFrame("Target Frame");
    static final DataFlavor[] supportedFlavors = { null };
    static {
    try {
         supportedFlavors[0] = new DataFlavor(DataFlavor.javaJVMLocalObjectMimeType);
    catch (Exception ex) {
         ex.printStackTrace();
    } Object object; // Transferable methods.
    public Object getTransferData(DataFlavor flavor) {
    if (flavor.isMimeTypeEqual(DataFlavor.javaJVMLocalObjectMimeType)) return object;
    else{
    return null;
    public DataFlavor[] getTransferDataFlavors() {
         return supportedFlavors;
    public boolean isDataFlavorSupported(DataFlavor flavor) {
         return flavor.isMimeTypeEqual(DataFlavor.javaJVMLocalObjectMimeType);
    } // DragGestureListener method.
    public void dragGestureRecognized(DragGestureEvent ev) {
    ev.startDrag(null, this, this);
    } // DragSourceListener methods.
    public void dragDropEnd(DragSourceDropEvent ev) { }
    public void dragEnter(DragSourceDragEvent ev) { }
    public void dragExit(DragSourceEvent ev) { }
    public void dragOver(DragSourceDragEvent ev) {
         object = ev.getSource();
    public void dropActionChanged(DragSourceDragEvent ev) { } // DropTargetListener methods.
    public void dragEnter(DropTargetDragEvent ev) { }
    public void dragExit(DropTargetEvent ev) { }
    public void dragOver(DropTargetDragEvent ev) { dropTargetDrag(ev); }
    public void dropActionChanged(DropTargetDragEvent ev) { dropTargetDrag(ev); }
    void dropTargetDrag(DropTargetDragEvent ev) { ev.acceptDrag(ev.getDropAction()); }
    public void drop(DropTargetDropEvent ev) {
         ev.acceptDrop(ev.getDropAction());
         try {
         Object target = ev.getSource();
         Object source = ev.getTransferable().getTransferData(supportedFlavors[0]);
         Component component = ((DragSourceContext) source).getComponent();
         Container oldContainer = component.getParent();
         Container container = (Container) ((DropTarget) target).getComponent();
         container.add(component);
         oldContainer.validate();
         oldContainer.repaint();
         container.validate();
         container.repaint();
         catch (Exception ex) {
              ex.printStackTrace();
              ev.dropComplete(true);
    public static void main(String[] arg) {
    JButton button = new JButton("Drag this button");
    JToolBar sbar = new JToolBar();
    JToolBar dbar = new JToolBar();
    JButton open_button = new JButton("Open");
    source.getContentPane().setLayout(null);
    source.setSize(new Dimension(400, 300));
    sbar.add(button);
    sbar.setBounds(new Rectangle(0, 0, 400, 31));
    sbar.add(open_button);
    open_button.addMouseListener(new MouseAdapter() {
    public void mouseClicked(MouseEvent e) {
    target.setVisible(true);
    source.getContentPane() .add(sbar);
    target.getContentPane().setLayout(null);
    target.setSize(new Dimension(400, 300));
    target.getContentPane().add(dbar);
    dbar.setBounds(new Rectangle(0, 0, 400, 31));
    dbar.add(new JButton("button1"));
    buttondrag dndListener = new buttondrag();
    DragSource dragSource = new DragSource();
    DropTarget dropTarget1 = new DropTarget(sbar, DnDConstants.ACTION_MOVE, dndListener);
    DropTarget dropTarget2 = new DropTarget(dbar, DnDConstants.ACTION_MOVE, dndListener);
    DragGestureRecognizer dragRecognizer1 = dragSource.createDefaultDragGestureRecognizer(button, DnDConstants.ACTION_MOVE, dndListener);
    source.setBounds(0, 200, 200, 200);
    target.setVisible(false);
    target.setBounds(220, 200, 200, 200);
    source.show();
    }

  • In Firefox version 4.0.1 (Mac OSX 10.6.7) I cannot find the "New Tab" tool button in Customize Toolbars.

    In Customize Toolbars there is no longer a New Tab tool button to place on the tool bar, there is only a New Window tool button. Has this been deleted from the latest version?

    Is Mail still "spinning"?  If it's been doing that for a while, I'd kill it, using either Activity Monitor or the OS X application picker.  Then relaunch Mail and see what happens.
    Two "by the ways":
    1) Your system details mention an PPC iMac.  Since a non-Intel Mac can't run OS X 10.6, you seem to have another Mac.  You might want to consider updating your system details.
    2) You seem to have been misled by the poor labeling of the message composition fields on this forum into trying to enter your entire post into the "subject" field.  In the future, just enter a summary of your post there and the main text into the field below it.

  • Firefox bookmark toolbar not allowing me to drag & drop website icons. I've gone into view and click on " bookmark toolbar".

    firefox bookmark toolbar not allowing me to drag & drop website icons. I've gone into view and click on " bookmark toolbar". bookmark toolbar appears but its but its not allowing me to drag and drop the icon on the toolbar. i've tried everything that one is supposed to do but its not working. its frustrating.
    stef./.\

    Make sure that toolbars like the "Navigation Toolbar" and the "Bookmarks Toolbar" are visible.
    *View > Toolbars
    *Right-click empty toolbar area
    Use Toolbar Layout (Customize) to open the Customize window and set which toolbar items to display.
    *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 toolbar palette into the Customize window to the Bookmarks Toolbar
    *if missing items are in the toolbar 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 toolbar palette then click the "Restore Default Set" button to restore the default toolbar setup
    *https://support.mozilla.org/kb/How+to+customize+the+toolbar
    *https://support.mozilla.org/kb/Back+and+forward+or+other+toolbar+items+are+missing
    You can check for problems caused by a corrupted localstore.rdf file if the above didn't help.
    *http://kb.mozillazine.org/Corrupt_localstore.rdf

  • Gmail button in Customize Toolbar doesn't stay

    I right click on a toolbar and select [customize]. I can drag and drop any of the buttons in the option to the toolbar, including the gmail button. However after a few minutes, it simply diasppears
    FF3.6.10 XP

    You may have a corrupt file, for details see [[Toolbar keeps resetting]].

  • "Add New Tab" button does not exist in the Window -Customize Toolbar, and not on my Navigator toolbar. Where can I find one to put on my Navigator toolbar, please?

    I see "Add New Window" but..."Add New Tab" button does not exist in the Window -Customize Toolbar any longer, and not on my Navigator toolbar. Where can I find one to put on my Navigator toolbar, please?
    Thanks

    It's the "+" on the Tab bar. You can move it to the Navigation Toolbar if you prefer. When you start Customize, the + moves to the far right end of the Tab bar. You can drag it where you want (see attached image).
    Any luck?

  • I dragged my url to customize toolbar, now my url is gone, how do I get it back?

    I mistakenly dragged my url into the customize toolbar, thinking I'd at it to my Favorites, but, it totally disappeared, how do I get it back? I tried all the suggestions I read elsewhere, but, they didn't work.

    If you have not tried this already. try this.
    Click "View"menu  in the Safari menu bar at the top of the screen and select "Show
    Toolbar".
    or
    Click "View" menu in the Safari menu bar and click "Customize Toolbar".
    From the drop down drag the default set into the Toolbar.
      the one under " or drag the default set into the Toolbar"
    Click "Done".
    Best.

  • Webdynpro ABAP layouteditor:Can't drag&drop UIelements from toolbar to view

    Hi there,
    i have a problem with the Webdynpro for ABAP layout editor in SE80. When i'm editing a view, i see the UI elemnts toolbar, but i cannot "drag&drop" any elemet of the toolbar to the view, it'S only possible to add elements using right click on rootuielementcontainer.
    Does anybody has an idea what could be wrong?
    I have SAP Netweaver Release 702 SP 8 and using SAP GUI 710 (Level 22).
    regards
    Steffen

    Shut off include photos from subitems.
    This exact question was answered yesterday.

Maybe you are looking for

  • Why is it that Photoshop Elements takes a very long time to open a png file?

    Even though I wait for a very long time (minutes)  for Photoshop Elements 11 to open a PNG file, the computer's process monitor shows nothing discernible going on while I am waiting. This is on a Windows 7 machine with an Intel I7 4 core processor.

  • Need information on the battery

    Hello. Before i get an electronic like the iPod Touch, i try to gather as much information as i possibly can so i can have everything ready and all of the knoweledge about it so i dont screw it up and so i can use it correctly, im trying not to sound

  • Can't get my new AE to work

    I just purchased the AE yesterday and it can't find my wireless network. I have cable internet, that feeds into an airbase (circa 2001) and use that for my wireless internet, no issues. I tried to hook the AE up to my printer which is located in my o

  • How to export H.264 in a .MOV container in Adobe Premiere Pro CC 2014?

    Hi! I'm editing video on a regular basis, and the broadcasting network I'm working with is asking for an H.264 video in a .MOV file format.  I'm using Adobe Premiere Pro CC 2014 and love it, but I cannot seem to find the option to export H.264 in a Q

  • Can you get DDL for more than a single object?

    I need to have the ability to select from the list of objects (say tables for this example) and generate the DDL for all or some of the tables. At this point I can only see how I can get the DDL for a single table.