I have this weird right-click popup menu that displayes all of the options for FF:

So sometimes when I right-click my mouse button this popup menu with all the options possible comes up... I have a picture if you need.
P.S. It's not an addon or plugin; this happens to my friends computers and new Firefox installations too.

This issue can be caused by an extension (Tools > Add-ons > Extensions).
Start Firefox in [[Safe Mode]] to check if one of your add-ons is causing your problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).<br />
See [[Troubleshooting extensions and themes]] and [[Troubleshooting plugins]]
If it does work in Safe-mode then disable all your extensions and then try to find which is causing it by enabling one at a time until the problem reappears.
You can use "Disable all add-ons" on the [[Safe mode]] start window to disable all extensions.
You have to close and restart Firefox after each change via "File > Exit" (Mac: "Firefox > Quit"; Linux: "File > Quit")

Similar Messages

  • Delete datagridview row using right click context menu does not behave like the delete key

    I have a datagridview with editing enabled. If I click the row header and press the delete key, the row is removed no questions asked. I don't recall doing any coding to make this happen but I couldn't do copy and paste using keys so I created a context
    menu with copy, paste, & delete.  The delete option calls
    dgvVX130.Rows.RemoveAt(dgvVX130.SelectedRows[0].Index);
    The row is removed but the problem is this fires other events like RowValidating which fails.  I presume because the row is no longer there.
    The delete keypress is definitely a lot cleaner so my question is 3fold. 
    1) Why doesn't Rows.RemoveAt behave like the delete key? 
    2) Is it possible to issue a delete keypress to do the same thing?
    3)  Is it possible to suppress the RowValidating event or other events when Rows.RemoveAt is fired?

    Interesting.  My delete key does not fire the row validating event.  When I use the delete key I click on the row header which does fire the row validating event and then I press the delete key.  Row is deleted and no event fires.  Works
    just the way I want it to.  I wish my context menu delete worked that way.  I wouldn't know what chunk of code I can provide to show the Row Validating NOT firing when delete key is pressed but here is the context menu code that does fire Row Validating.
    private void cmsEditItemClick(object sender, ToolStripItemClickedEventArgs e)
    ToolStripItem item = e.ClickedItem;
    switch (item.Text)
    case "Copy":
    if (dgvVX130.GetCellCount(DataGridViewElementStates.Selected) > 0)
    try
    // Add the selection to the clipboard.
    Clipboard.SetDataObject(
    dgvVX130.GetClipboardContent());
    // Replace the text box contents with the clipboard text.
    catch (System.Runtime.InteropServices.ExternalException)
    MessageBox.Show("The Clipboard could not be accessed. Please try again.");
    break;
    case "Paste":
    if (Clipboard.GetDataObject().GetDataPresent(DataFormats.Text) == true)
    ClipboardUtils.PasteFromClipboard(dgvVX130);
    dgvVX130.NotifyCurrentCellDirty(true);
    dgvVX130.EndEdit();
    dgvVX130.NotifyCurrentCellDirty(false);
    bindingSource1_PositionChanged(this, e);
    break;
    case "Delete":
    dgvVX130.Rows.RemoveAt(dgvVX130.SelectedRows[0].Index);
    break;
    default:
    //code
    break;
    private void dgvVX130CellContentClick(object sender, DataGridViewCellEventArgs e)
    //dgvVX130.IsUserSelectionEnabled = true;
    dgvVX130.BeginEdit(false);
    ((TextBox)dgvVX130.EditingControl).SelectionStart = 0;
    //((TextBox)dgvVX130.EditingControl).SelectionLength = 3;
    public class ClipboardUtils
    public static void PasteFromClipboard(DataGridView grid)
    try
    char[] rowSplitter = { '\r', '\n' };
    char[] columnSplitter = { '\t' };
    // Get the text from Clipboard
    IDataObject dataInClipboard = Clipboard.GetDataObject();
    string stringInClipboard = (string)dataInClipboard.GetData(DataFormats.StringFormat);
    // split into rows
    string[] rowInClipboard = stringInClipboard.Split(rowSplitter, StringSplitOptions.RemoveEmptyEntries);
    // get current cell
    int currentRow = grid.SelectedCells[0].RowIndex;
    int currentColumn = grid.SelectedCells[0].ColumnIndex;
    // get 1st cell in selected area
    for (int i = 1; i < grid.SelectedCells.Count; i++)
    if (currentRow > grid.SelectedCells[i].RowIndex)
    currentRow = grid.SelectedCells[i].RowIndex;
    if (currentColumn > grid.SelectedCells[i].ColumnIndex)
    currentColumn = grid.SelectedCells[i].ColumnIndex;
    // add more rows if need to paste data
    /* if (grid.Rows.Count < rowInClipboard.Length + currentRow)
    grid.Rows.Add(rowInClipboard.Length + currentRow - grid.Rows.Count); */
    // paste
    for (int iRow = 0; iRow < rowInClipboard.Length; iRow++)
    if (iRow + currentRow < grid.Rows.Count)
    string[] cellsInRow = rowInClipboard[iRow].Split(columnSplitter);
    for (int iCol = 0; iCol < cellsInRow.Length; iCol++)
    if (grid.ColumnCount > currentColumn + iCol)
    DataGridViewCell currentCell = grid.Rows[currentRow + iRow].Cells[currentColumn + iCol];
    if (!currentCell.ReadOnly) // H.NH added to avoid Read only case.
    if (cellsInRow[iCol] == "")
    if (grid.Columns[iCol].ValueType.Name == "String")
    currentCell.Value = null;
    else
    currentCell.Value = DBNull.Value;
    else
    currentCell.Value = cellsInRow[iCol];
    switch (iCol)
    case 3:
    currentCell.Value += "_ChangeColumnName";
    break;
    case 2:
    currentCell.Value = grid.Rows[iRow].Cells[iCol].Value;
    break;
    else break;
    catch (Exception e)
    MessageBox.Show("Sorry, can not paste from the clipboard.\nError: " + e.Message, "Paste Error", MessageBoxButtons.OK, MessageBoxIcon.Error);

  • Labview edit time menu and right click popup menus

    How can i add a menu item to the labview edit time menus and to the right click popup menu of any selected object in a block diagram?
    I would like to integrate commonly used tools by me out of the springboard scripting tool into actual labview.
    Solved!
    Go to Solution.

    It sounds to me like you are looking for something like the Right-Click Framework.  Some people really like it, I have not used it extensively myself.  I've had a request to convert a quick drop shortcut into a RCF plug-in, I'll see how it goes.  I have also longed for a good way to hook into the LV IDE to add my own tools, what I find are useful, but not fully satisfactory solutions.
    1)  Right-Click Framework:  Some initial startup costs in terms of downloading and installing.  Start up is a bit slow (on my machine), and the workflow is a bit different than what I am used to:  Select an object, press the hotkey, right-click.  You can get used to it, but it is not as responsive as a built-in right-click since you can't right-click in one action.  It seems to be easily extensible, I'll know more in a day or two.
    2)  Quick Drop:  Built into LV.  Slow startup like RCF.  Fairly easily extensible.  Not context aware (unless you build it in to your plug-in), so you have to choose your letters wisely.  After the initial pain, the response time is not shabby, does require the extra Ctrl-Space action.  
    3)  Tools Menu:  I drop a few things in here, like my custom connector pane editor.  Not bad, but there are no keyboard shortcuts (what a pain), so it is good for actions that you might call once or twice on a given VI.
    In short, all of these methods require extra clicks or keypresses and are a bit sluggish.  If something like copy and paste behaved this way we would never use LV again, but if your tool truly saves you a bunch of steps it is well worth it.  I have almost run out of letters to use for my QD shortcuts.
    Addedendum:  Personally I am not quite ready to start talking to my computer, but LVSpeak seems pretty cool, Smashy Smashy.

  • Customizing the right button popup menu?

    I was wondering if anyone knows of a way to customize the right click popup menu in/for Labview.
    I am build a vi with a graph on which you can right click, bring up a menu, select an item, and the graph will display a cursor at that location with the label you selected from the right click popup menu.
    I would be grateful for any insight you might have into this.

    Hi,
    I've a toolkit for this. It draws popupmenu's (at least on
    Windows95,98,NT,2000).
    The trigger can be anything (it's a boolean), so if you can catch the right
    mouse button (using the events structure), you can create a popup menu above
    it.
    Sorry, I can't mail it to you, because of the no.email... Drop me a mail,
    and I'll send it to you.
    Regards,
    Wiebe.
    "Tere" wrote in message
    news:[email protected]..
    > I was wondering if anyone knows of a way to customize the right click
    > popup menu in/for Labview.
    >
    > I am build a vi with a graph on which you can right click, bring up a
    > menu, select an item, and the graph will display a cursor at that
    > location with the label you selected from the right clic
    k popup menu.
    >
    > I would be grateful for any insight you might have into this.

  • Magic wand no right click (pc) menu

    magic wand tool no longer has the right click (pc) sub menu, i have to change to the quick selection tool in order to acess the sub menu to deselect or layer via copy etc? is anyone else having the same issue?

    Did you upgrade to Ps CC 14.2? I can confirm that the right click context menu does not appear with the magic wand tool on Windows 7 64-bit with the latest upgrade. There may be other surprises.
    Another posting here also complains about right clicks missing context menus. More confirmed right click context menu issues on Windows here.
    (Advice to the wise and wary: never be the first to upgrade; let others find the bugs.)

  • Right click problem: I did not know about the Yahoo sidebar issue, I have removed all toolbars from my browser from 'view' menu. There is nothing in my 'extensions' to disable. Right click is not working. What to do?

    Right clicking is not working on any of the websites. I read up that it's a Yahoo sidebar issue. But, in my extentions, Yahoo sidebar is not there. I had removed all toolbars, but from 'view' menu. Now how do I get my right click to work?
    == This happened ==
    Every time Firefox opened
    == I've noticed it on 1 Aug 2010

    This is a user-supported board. You are not addressing Apple here. Nor is it a good idea to post your private information to a public forum. You should edit your post immediately.
    Unfortunately no one here can access your support history. You must respond to the emails directly.

  • "Save link as" in Right-click Context menu is not working properly.

    Firefox 17: In a Google search, when I right click on a .pdf link, the popup window automatically gives a "url" filename and "Firefox Document" as filetype. Previously, the filename would be whatever it was on the website (ie. "filename.pdf") and the filetype would be "Adobe Acrobat Document".
    I know this problem has less to do with Firefox and more to do with JavaScript, because the problem disappears if you disable JavaScript (Tools -- Options -- Content -- uncheck "Enable JavaScript"). What's happening is that JavaScript is somehow altering the link from a purely .pdf link to something else -- perhaps encasing the link inside a set of commands, and the computer is trying to save the command string instead of recognizing the link for what it is. When JavaScript is disabled in Google searches, the highlighted "[PDF]" link no longer appears in front of the link itself, and the "Save link as" function on the right-click works properly.
    Any JavaScript junkies want to try their hand at creating a workaround? One that ensures that the reference created by the right-click context menu matches exactly what the filename is for the website?

    The problem is that Google has an onmousedown attribute added to the links that modify a link if you click or right-click a result link to make the link point to a safe browsing check on the Google server.<br />
    You can see that if you hover a link and you will notice that after you have (right) click a link the the URL changes to www.google.com/url?xxxxx.
    You can use this bookmarklet to remove the onmousedown attributes.
    <pre><nowiki>javascript:(function(){var e=document.querySelectorAll('*[id="search"] a[onmousedown]'),E,i;for(i=0;E=e[i];i++){E.removeAttribute('onmousedown')}})()</nowiki></pre>

  • Libreoffice right-click context menu going beyond the end of the page

    having a rather annoying issue with libreoffice 3.x (started with 3.5.x and still in 3.6.1): The right-click context menu goes over the screen borders when I am at the end of the page (instead of opening in the other direction so that all options are visible). I am running arch 64bit KDE 4.9.1. But I think in this case that's not relevant because we have a second computer, the same one basically with an extremely similar setup and there it works just fine. I did uninstall libreoffice, got rid of the .cache in the home folder, then reinstalled but the problem persists.
    Anyone know how to fix this or hints on how to approach the problem?
    Thx!
    Captn

    Update:
    the problem was fixed with an update to KDE 4.9.2 but shortly after for some reason, it reappeared. As previously mentioned, I tried uninstalling libreoffice entirely, including the libreoffice .config folder. Here is what it looks like (second screen shot):
    I noticed that this also happens with dolphin when I open it as root. Someone came across the same issue and fixed it?
    Help's greatly appreciated
    Captn
    Edit: libreoffice version 3.6.1
    Edit 2: Real Problem identified:
    I just wanted to update this thread should there be others that, at one point or another, run into a similar problem. I won't be marking the thread as solved since I did not actually solve the problem (yet). However, I did identify the cause and therefore know how to circumvent it.
    Since I didn't elaborate much on the specs / technical side, I have an HP pavilion with an Nvidia card and I am using the propretiary drivers. I set up a separate X screen for my TV and there is where the problem lies. It has worked for months but since recently this setup causes some weird graphical behavior (as in the above pictures) which can be annoying. If using the twinview setup or no external monitor, everything works normal. My guess is that plasma-desktop and the separate x screen don't work very well together for a reason unknown to me for the time being.
    The problem itself can be annoying if you rely on libreoffice to work so I hope this might help somebody should there be annyone running into a similar issue.
    Last edited by capthilts (2012-10-13 06:02:32)

  • How do I fix the right-click context menu; it has blank entries and shows no selectable options?

    recently I have noticed that my right-click context menu looks like it has no entries. It shows up on a right-click, but the whole menu is blank. On further investigation there are scroll buttons on the top and bottom of the menu and if I hover over the up buttom eventually the normal context commands scroll down from above. I noticed this first a few days ago, shortly after the download of 3.6.13. Today I also noticed that some of my menu bars were showing a similar issue with blank entries in the menus. In one case the menu also didn't register where the mouse was, highlighting a command several steps further up.
    Is this something to do with the new Mozilla or something else? I only run a couple of addons, Ad Block Plus and Tab Mix Plus. Can try to capture a screen shot of the issue, but difficult since the menu dissapears when I try to do a screen grab!
    All help is much appreciated.

    Hi, thanks for the quick response!
    While trying to find info on how to fix this I looked up some context menu addons for FF and tried one. It didn't work so I uninstalled it and after that everything was back to normal. Odd, but there you have it. I still don't know what went wrong in the first place but for the moment it appears to have cleared up.
    Next time though I will try loading into Safe Mode if I find any issues (I forgot there was one!).
    Thanks for getting back to me again.
    GC

  • Is there any way to prevent the right click context menu from combining Stop/Reload?

    Is there any way (about:config tweak, or something) to prevent the right click context menu from combining Stop/Reload?
    Screenshot of what I'm talking about: http://picsend.net/images/873089StupidReloadSto.png

    I did try the add-on ''Menu Editor'' https://addons.mozilla.org/en-US/firefox/addon/menu-editor/ but even when I separate the navigation reload and stop icons and explicitly have both stop and reload set to be visible on the right click context menu I only get the one option showing.
    Whilst there may be some way of changing this I do not know how to and I do not really see any use case for making such a change. Only one option of the choice: stop or reload, is available at any instance in time, but that is the option you are able to use, the other option is not active and so is not displayed.

  • Update for RDP 8.1 Windows 7 SP1 changed explorer right click context menu

    I have a 4 pcs and 3 nas drive on my network.  previous to the update I could view my pcs and nas drives in explorers right pane left click one and access the folders on it.  since the update I can no longer do this because "remotedesktopconnection"
    has been added as the default (previously it was "open") to the right click context menu.  can someone help me change this back so when I right click a network computer icon in explorer I only see:
    open                                                                   
    AND NOT                              remotedesktop
    open in a new window                                                                                       open
    create shortcut                                                                                                 open
    in a new window
                                                                                                                           create
    shortcut
    the exact update that makes the change is: kb2592687

    Hi
    Theoretically it could be done by modify registry. For example you could
    modify right click menu on .exe file by changing values under
    HKEY_CLASSES_ROOT\exefile\shellex\
    However there are some problems that I cannot define that what kind of “file”
    the network computer is.
    And I found no article specific to this.
    If you really need to restore your context menu and also need this update, I
    suggest you uninstall this update first. Then back up your registry, install it
    again. This time using process monitor you could record all registry modifications during
    this update installation. It might take lots of work.
    I tried to do that for you, unfortunately this update has been deployed in our environment which cannot be uninstalled from update history.
    For more information about process monitor
    https://technet.microsoft.com/en-us/library/bb896645.aspx?f=255&MSPPError=-2147217396
    Regards
    D. Wu
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • Is it possible to add a button to the right-click context menu for a user in Outlook 2010 using VBA?

    I've tried many things and read up quite a bit but I cannot figure this out.
    I cannot create an add-in so I have to use VBA.
    I want to add a a button to the right-click context menu when I right-click on a user. Is this possible?

    Hello,
    Yes, it is possible to customize the context menu in Outlook. See
    Customizing Context Menus in Office 2010 for more information.
    But VBA doesn't allow to customize the Fluent UI in Outlook, you need to develop an add-in instead.

  • Right click context menu does not appear only for Java 1.7, AWT TextField

    I have been debugging some issues that an application has been having with Java 1.7 versus older versions. A new problem I have encountered is that the right click context menu does not function in any TextField. It works fine when running/compiling it with any previous version of Java. I have tried coding a simple test with a Frame, Panel and TextField to see if it might be something else in the more complex application that was causing it, but the simple test class has the same problem.
    I have searched for other people having the same issue, but I have not found anything comparable. This seems like a huge change from one version to the next and I am surprised that I am not finding this mentioned anywhere else. Can someone point me to anything that discusses this issue that I am having? Does 1.7 require I implement my own context menu? I realize AWT is old technology, but this is an old, fairly complex application that doesn't use swing, and that is not going to change at this point.
    My simple test:
    import java.awt.*; 
    import java.awt.event.*; 
    import java.util.*; 
    class testF3 extends Panel 
      public static void main(String args[]) 
        Frame f = new Frame(); 
        Panel p = new Panel(); 
        f.setLayout(new BorderLayout()); 
        f.add("North", p); 
        TextField tf1 = new TextField("", 20); 
        p.add(tf1); 
        Dimension medm = f.getSize(); 
        medm.height = 100; 
        medm.width = 200; 
        f.setSize(medm); 
        f.setVisible(true); 

    In the past few days since upgrading to 4.0.4, the entire right-click context menu for links is gone and replaced with one item: "Copy Link" The "Open In New Tab" item, along with some other context items, is no longer there.
    That's actually a problem with your particular installation of Safari, b. I've got all the contextual menu entries with my 4.0.4.
    I helped fix one of these recently here at the forum. Try the procedure from the following post (it got back Tho's missing contextual menu entries):
    http://discussions.apple.com/thread.jspa?messageID=10598385&#10598385

  • Reader 9.1.3 Right click context menu

    Good Morning,
    We have deployed the Acrobat Reader 9.1.3 MSP Patch on our network to upgrade to the latest version.  However, after the upgrade we are missing some functionality.  In previous versions we were able to right click on a PDF(s) and have the option to "Print".  With the new version those context menus seem to be missing.  Was this a change done by the product?  If so, anyone know why? And if not, does anyone know what I can do about re-adding this functionality?
    Thank you for your time on this matter,

    I put the following into a .reg file and this seems to work. Anything you see that could be wrong?  It does bring back the "Print" option under the right click context menu.
    Windows Registry Editor Version 5.00
    [HKEY_CLASSES_ROOT\.pdf]
    @="AcroExch.Document"
    "Content Type"="application/pdf"
    [HKEY_CLASSES_ROOT\.pdf\OpenWithList]
    @=""
    [HKEY_CLASSES_ROOT\.pdf\OpenWithList\AcroRd32.exe]
    @=""
    [HKEY_CLASSES_ROOT\.pdf\PersistentHandler]
    @="{F6594A6D-D57F-4EFD-B2C3-DCD9779E382E}"
    [HKEY_CLASSES_ROOT\.pdf\ShellEx]
    [HKEY_CLASSES_ROOT\.pdf\ShellEx\{8895b1c6-b41f-4c1c-a562-0d564250836f}]
    @="{49400A7C-81A8-4F52-8CCE-D54739EE87EC}"
    [HKEY_CLASSES_ROOT\AcroExch.Document]
    "BrowseInPlace"="1"
    "EditFlags"=hex:00,00,01,00
    @="Adobe Acrobat Document"
    [HKEY_CLASSES_ROOT\AcroExch.Document\CLSID]
    @="{B801CA65-A1FC-11D0-85AD-444553540000}"
    [HKEY_CLASSES_ROOT\AcroExch.Document\CurVer]
    @="AcroExch.Document.7"
    [HKEY_CLASSES_ROOT\AcroExch.Document\Shell]
    [HKEY_CLASSES_ROOT\AcroExch.Document\Shell\Open]
    [HKEY_CLASSES_ROOT\AcroExch.Document\Shell\Open\Command]
    @="\"C:\\Program Files\\Adobe\\Reader 9.0\\Reader\\AcroRd32.exe\" \"%1\""

  • Disable Right Click Context Menu in XP "OPEN WITH ADOBE READER 8"

    How can I eliminate the right click context menu "OPEN WITH ADOBE READER 8" in Windows XP?
    I have general familiarity with removing context menus. I see no option for this one in msconfig, or various context menu editors. I am unable to find a setting in Adobe Reader 8. If you know where the setting is, or have solved this problem, please let me know.
    Thanks,
    Joey

    That would be the device Metadata from the print driver vendor. It's part of the Device Stage feature mainly for client OS.
    Here is some MSDN documentation on the feature.
    http://windows.microsoft.com/en-us/windows7/products/features/device-management
    If this is a print server, use the tools include by the print team if you are performing any management on the server.
    Printmanagement.msc
    The Devices UI is really about devices it's not designed for print management, the spooler team had minimal input on the UI design.
    Alan Morris formerly with Windows Printing Team

Maybe you are looking for

  • Behaviour of TM toward and extHDD vs TC?

    I remember recently backing up my system to an external HDD using Time Machine, it worked very differently comparred to experiences of the past. In the past I had access to a Time Capsule, so I never thought about it, that's what the technology is fo

  • Apple Remote Desktop 3.0 and OS 10.6.8

    I purchased Apple Remote Desktop 3 several year ago when I was running 10.4.  Last year we got new computers and we are running 10.6.8 now. I tried to load Apple Remote onto my new computer, but it did not work.  It appeared to load, though very quic

  • Routing and remote access logging to SQL server

    Hi! I am in the process of trying to set up SQL logging from routing and remote access on a windows server 2003 to another windows server 2003 which is running microsoft SQL server 2005. What i did was i created a database named RRAS in the sql serve

  • Broken link to Workflow Builder download

    I'm having trouble downloading the Workflow Builder from the following link. http://download.oracle.com/otn/nt/workflow/B11248-01.zip

  • Duplicates From An iPhoto Import

    I think I've got duplicates, and a lot of them. I'm brand new to Lightroom and use v. 5.7.1. I previously used iPhoto. My file structure was that many photos were within the iPhoto Library and managed from it.  But, I also have a large number of phot