Results 1 to 4 of 4

Thread: how to edit the right click mouse button MENU

  1. #1
    Join Date
    Aug 2004
    Posts
    76

    how to edit the right click mouse button MENU

    Can anyone tell me a way to edit the right click mouse button menu? There was some virus in my pc that was removed but now when I right click on any file or folder on my computer then it attempts to install a program, it will continuously try to install some programs and I have removed the programs from the computer. Any ideas whats going on? Thanks

  2. #2
    Join Date
    Jun 2006
    Posts
    623

    RE: how to edit the right click mouse button MENU

    You can try to use the below contextmenu event:
    Code:
    <html>
    <head>
    <script type="text/javascript">
        if (document.addEventListener) {
            document.addEventListener('contextmenu', function(e) {
                alert("You've tried to open context menu"); //here you draw your own menu
                e.preventDefault();
            }, false);
        } else {
            document.attachEvent('oncontextmenu', function() {
                alert("You've tried to open context menu");
                window.event.returnValue = false;
            });
        }
    </script>
    </head>
    <body>
    Lorem ipsum...
    </body>
    </html>

  3. #3
    Join Date
    May 2006
    Posts
    2,335

    Re: how to edit the right click mouse button MENU

    It still seems to me that the virus is not removed from your computer, it is still there. Can you make an antivirus full scan of the pc again.

  4. #4
    Join Date
    Nov 2005
    Posts
    625

    Re: how to edit the right click mouse button MENU

    I think that Windows Installer is attempting to repair a program, so try to let it run and do the job once. Incase that doesnt help, then you can let us know what application is it. It might be also possible that the application would be not there but the Product Code will be available.

Similar Threads

  1. I want to re-enable the right click button of my mouse.
    By Dhulipala in forum Hardware Peripherals
    Replies: 3
    Last Post: 02-03-2012, 10:36 AM
  2. Replies: 9
    Last Post: 23-09-2011, 10:27 PM
  3. how to edit the Right-click contextual menu in Firefox 4?
    By NahiTo in forum Technology & Internet
    Replies: 4
    Last Post: 14-04-2011, 11:14 AM
  4. How to add print button to Firefox right click menu
    By FRITZ31 in forum Technology & Internet
    Replies: 5
    Last Post: 20-12-2009, 02:18 AM
  5. How to Make Context Menu Appear on Mouse Click
    By NSA_CIA in forum Tips & Tweaks
    Replies: 3
    Last Post: 03-10-2009, 11:56 AM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Page generated in 1,713,571,285.70143 seconds with 17 queries