Mouse right click button, popup menu, PC frozen

Hello all,
It has been while I've been noticing this problem.
Almost every time I click with the right mouse button on an email from the list of emails or a word inside the content of an email to see which words are suggested by the spell checker, the usual popup menu appear but immediately after
my PC gets frozen. I need to restart it.
I don't think TB causes that crash, but something indirectly related.
How can I debug this? (I'm software developer)
Thank you so much.
Roberto

Update1:
I put my attention only in the main TB menu.
I disabled the TB extensions (only Lighting and EnigMail) and tried again to play with the main TB menu.
With this new TB GUI, you don't see directly the main menu. I usually click the ALT key and the main menu will be displayed. After that I play with it a bit. That means, I clicked on on Tools or File or View etc items and just moved the mouse cursor over the popup menu, without clicking on a specific submenu item. After a while, some seconds, the PC gets frozen and I need to restard the PC.
I started TB in safe mode also (-safe-mode). In this mode the main menu appears always so I don't need to click on the ALT key.
I repeat the same steps of moving the mouse cursor of popup main menu items. Up to now, all is normal, without crashing or freezing.
PC: Win7 (full updated), x64, TB last version.
Any idea how can I debug this problem?
Thanks

Similar Messages

  • The mouse right-click (to copy-paste) menu does not work correctly.

    The mouse right-click copy-paste menu often fails in Firefox 4. If I highlight something to copy and then use the mouse to right-click on it, the menu will appear down and to the right. Second, the highlighted command (i.e. copy, paste, etc) will be two steps beneath the mouse pointer. Third, if one chooses "copy" for example, your highlighted text might or might not (usually Not) be copied. This works as expected (perfectly) on this Firefox site, but fails on all other web pages. Note: This is a "company computer" where I am not an administrator.

    I am the admin on my PC, and I am not able to select the copy page after I have highlighted an area. I can if a link select copy link, but in short no more copy paste feature on this new Firefox.

  • Disable Right Mouse Button Popup Menu

    How can I disable right mouse button popup menu for a LabVIEW control to use
    my custom popup menu?
    Alessio Colzi

    Sorry for the stupid question but I forgot that option.
    Thank you Gorka
    Alessio
    "Gorka Larrea" ha scritto nel messaggio
    news:[email protected]..
    > Not sure if can be made under LV 6 but under LV 5.0 you can disable
    > runtime popup menu for all the vi under VI setup right clicking the
    > icon in the right part of the front panel.
    >
    > Another option is to put a transparent decoration over your control,
    > to avoid right clicking.
    >
    > Hope this helps

  • 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.

  • Cant see MOUSE RIGHT CLICK menu

    WINDOWS 7 cant see MOUSE RIGHT CLICK menu -WHEN i right click menu is BLANK - sometimes if i goto up or down arrow it appeares then dissapears befor i can select it

    This is probably due to a problem with an add-on. Follow the procedure in the [[troubleshooting extensions and themes]] article to identify the culprit.

  • 64 bit Ubuntu 10.10 FF 3.6, top menu does NOT function nor does mouse right-click, all other applications O.K.

    Running 64 bit Ubuntu 10.10 upgraded from 10.04
    Running latest 3.x.x Firefox
    On rebooting this morning the top menu does not function at all, nor does mouse right-click.
    Did 'complete removal' in Synaptic and reinstall to no avail.
    Thunderbird and Google Chrome functioning fine.

    Fixed!
    open a new instance of Firefox (ctrl-N). You will notice all is working now. Close the old instance, so whatever Firefox remembers as your last instance is the new, good one. Worked for me. This problem seems to have been around a while already, this fix dates from November 2010...

  • Right click button on magic mouse stopped working

    My magic mouse right click has suddenly stopped working. I have looked at the system preferences, and they are set correctly. I disconnected and reconnected it as well. The other thread suggested remove files that don't exist on this version of the OS.

    Yep, have reset PRAM and SMC. Same issue.
    It's actually fairly common - I've found at least 15 topics on this forum about it and a bit of Googleing revealed it wasn't just me. Can't find any topics that have a proper resolution though.
    I did a fair bit of research before posting on here because I didn't want to post a problem that was specific to just me. It seems like it's a fair few people.
    One "solution" is to install a 3rd party piece of software and assign right click to a right "tap" (not a full click) - that's not really a solution, more of a workaround.

  • Mouse Right Click

    Hello all,
    How to track mouse right click in Oracle Forms? I have a form which has a popup menu, based on the item status i have to enable and disable some options in the popup menu. Any ideas?
    With Regards,
    Yathish

    try the PRE-POPUP-MENU - trigger

  • JPopupMenu - disabling mouse right click

    Hi,
    First of all, before I write the problem here, I searched a lot but I actually could not find the desired solution.
    The problem is;
    I have a JPopupMenu. As you know, all mouse clicks (left click, middle click and right click) do the selection in popup menu and then it tries to perform the related action. Finally, the popup menu disappears. But, what I want actually is that "my popup menu will not respond to the mouse right click and will not disappear after that right click".
    Can anyone say how to make that happen?
    Thanks a lot.

    The following is an example code, and I did not the details of how the popup menu showed. I just showed how the actions are added to the popup menu elements. In this example, in the popup menu there are Text1, Text2 and Text3 selections and their actions are added like in the code. So, my actions are seperate for each element in the popup menu. Now, how can I make the mouse right click will not enter the related selection's actionPerformed (e.g; Text1, Text2) and the popup menu will not disappear?
    public class JPopupMenuTest {
        public static void main(String[] args) {
            JPopupMenuTest popupTest = new JPopupMenuTest();
            JPopupMenu popupMenu = new JPopupMenu();
            popupMenu.add(popupTest.new Text1Action());
            popupMenu.add(popupTest.new Text2Action());
            popupMenu.add(popupTest.new Text3Action());
        class Text1Action extends AbstractAction {
            public Text1Action() {
                super("Text1");
            @Override
            public void actionPerformed(ActionEvent e) {
                // Here is the Text1 action performed
        class Text2Action extends AbstractAction {
            public Text2Action() {
                super("Text2");
            @Override
            public void actionPerformed(ActionEvent e) {
                //  Here is the Text2 action performed
        class Text3Action extends AbstractAction {
            public Text3Action() {
                super("Text3");
            @Override
            public void actionPerformed(ActionEvent e) {
                // Here is the Text3 action performed
    }

  • Right Click Pop up Menu in internet Explorer

    i want to add my own options in the default context menu of the internet explorer which appear when we right clik the mouse. i want to show the customized right click pop up menu in my web application not just on my own machine by editing the registry entries.
    if any one know some javascipt or some else technique, please help me
    Thanks
    Waseem Aslam

    Dont post twice...
    also you should checkout a Javascript forum to get your answer

  • How to activate mouse right click in JTexhArea

    Hi Swings Expert!
    I've a problem to get action mouse right click in JTextArea for example to cut and paste selected text from textarea into another textarea.
    If I want to copy and paste text from textarea, Ive to use Ctrl C for copy
    and Ctrl V for paste the selected text.
    Is there a way to activate mouse right click in JTextArea?
    any help.....Thanks a lot.

    Here are the basics:
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.text.*;
    public class PopupMenuTest extends JFrame implements MouseListener
         public JPopupMenu popup;
         public PopupMenuTest()
              popup = new JPopupMenu();
    //          popup.add( new DefaultEditorKit.CutAction() );
              JMenuItem item = new JMenuItem( new DefaultEditorKit.CutAction() );
              item.setMnemonic('C');
              popup.add( item );
              popup.add( new DefaultEditorKit.CopyAction() );
              popup.add( new DefaultEditorKit.PasteAction() );
              JTextField textField = new JTextField("Right Click For Popup");
              textField.addMouseListener( this );
              getContentPane().add(textField);
         private void checkForPopup(MouseEvent e)
              if (e.isPopupTrigger())
                   popup.show(e.getComponent(), e.getX(), e.getY());
         public void mousePressed(MouseEvent e)
              checkForPopup( e );
         public void mouseReleased(MouseEvent e)
              checkForPopup( e );
         public void mouseClicked(MouseEvent e) {}
         public void mouseEntered(MouseEvent e) {}
         public void mouseExited(MouseEvent e) {}
         public static void main(String[] args)
              PopupMenuTest frame = new PopupMenuTest();
              frame.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
              frame.pack();
              frame.setLocationRelativeTo( null );
              frame.show();
    }

  • My iMac mouse right click does not work now

    Hi all,
    My iMac mouse right click does not work now.  It was fine a couple of days ago. 
    Right click is definitely enabled, I have checked it several times.
    A Google search revealed that in Firefox it could be that I'm not using the latest version of Firebug.  I have auto updates on and Firebug is the latest version 1.11.3
    I use right click for correcting spell checked words, instead of a suggested correct spelling I get the 'open in a new tab' menu.
    In Firefox when I right click to open in a new tab I get the menu but it does nothing.
    It is driving me mad
    Any help will be greatly appreciated,
    Thank you
    P.S. thought it was suddenly working when I did the spell check in this post but it was the left click doign it....

    I don't use Firefox so I can't test it, but it might be something to do with a preference setting. Have a look at this link (ignore all the instructions), just look at the image of the preferences, there appears to be a setting in Javascript preferences relating to contextual menus. Check to see what your settings are:
    http://stackoverflow.com/questions/16377381/disable-firefoxs-silly-right-click-c ontext-menu

  • Disable Mouse Right click inside Adobe Acrobat PDF plugin

    Hi All,
    We are rendering Adobe live cycle pdf file inside html object tag.
    I have disabled toolbar , navigation bar using navpanes=0&toolbar=0.
    But when mouse right click reenable the context menu again.
    So Is there any way to disable mouse righ click inside Adobe Acrobat PDF browser plugin?

    I had the same problem after updating Firefox to version 4.0 and Acrobat Reader to Version X. For me (Win XP) what solve the problem was deleting the Acrobat Reader Plugin (nppdf32.dll) in the Firefox plugin folder (C:\Program Files\Mozilla Firefox\plugins). So now there is only one Acrobat Reader Plugin left namely the one in the Acrobat Reader plugin folder (C:\Program Files\Adobe\Reader 10.0\Reader\Browser).

  • How write Vbscript for Mouse Right Click using UFT 11.5

    how write Vbscript for Mouse Right Click using UFT 11.5

    Press and hold the Control (Ctrl) key while you click the mouse button. This is identical to right-clicking with a mouse. (Ctrl+click = Right click)
    You can try the following:
    •Click on and off the 'right click' checkbox in the Mouse System Preferences
    •Restart in Safe Mode
    •Reset NVRAM / PRAM

  • Why keyboard and mouse right click not working in Solaris and Linux?

    Hi all,
    I have two problems:
    1) I am working on AWT/Swing application and its working fine in window enviornment,but while running on solaris and linux mouse right-click option window not poping up.
    2) Ctrl+c,Ctrl+v,Home and End keyboard key are not working in solaris and linux OS for same application.
    Pls provide me some solution for these problem.
    -Dinesh

    Hi Nik,
    Thanks for reply. I found some solution for the above problem.
    For mouse right click there was problem in my source code.I have not implemented the mousePressed() method
    In case of keyboard Home, End and arrow key working fine after exporting AWTUSE_TYPE4_PATCH=false; in solaris and linux
    But still Ctrl-c and Ctrl-v not working.
    I am using JDK1.5.0_07+Eclipse IDE 3.1
    -Dinesh

Maybe you are looking for