Disable the alt key?

Hi everyone,
As my name suggests, I am a student who is not a techie so please excuse me if I make any mistakes, and I would like to mention that any kind of re - coding would be useless because I am hopeless
with computers.
I recently had a friend come over, we are working on a school project together. I'd gone to get us some drinks and I came back upstairs and he was mucking about with the keys on my laptop. A few minutes later I tried to go into bookmarks (on Mozilla Firefox)
and the bars weren't there (file, edit, view, history, bookmarks, tools, help) and he'd told me to press alt. I did and they re - appeared. Phew. But when I click off anywhere on the screen, the bars disappear
yet again. It wasn't like that before, and yes, I am certainly sure. Now I have to press the ALT key every time I want to use any of the bars; and while it doesn't render my laptop useless, it is rather annoying.
I am using Windows 8.1 on a Lenovo G505.
P.S. Sorry if I chose the wrong forum, as I say, I have no understanding of most of the forums' meanings & what they're for.
Hope someone can help,
Thanks for reading.

You posted to the VB Developer's forum - definitely not the right place.
It sounds like the problem is related to Firefox options, so you might try a Firefox forum.  If the problem is occurring in every program (not just Firefox) then it may be a Windows8 Setting and you could visit a Windows 8 forum.  Either way, it
definitely won't be any of the forums here at MSDN.
Sorry about that; moving this to off-topic.
Reed Kimble - "When you do things right, people won't be sure you've done anything at all"

Similar Messages

  • How do I disable the alt key function?

    I have tried to clean my alt key on my macbook keyboard and now my macbook is acting like the key is hold down all the time eventhough it's not. Have tried to play around with the key, but its still the same. I wonder if I can disable the functions of the alt key in the mac os?

    you can do it system preferences->keyboard and mouse->keyboard->modifier keys. set "option" to no action. however, option is really a pretty useful key so you might consider trying to fix you keyboard.

  • Why does the ALT key disable mouse clicks on some machines?

    I have a drawing program, the main Window of which extends JFrame and contains a Canvas, which extends JPanel. The Canvas has a MouseAdapter, KeyAdapter and JMenuBar. It also has a Tools palette, which extends JDialog and has Buttons, which extend JToggleButtons.
    One button is called Zoom. After pressing this button, you can Zoom In and Zoom Out by clicking the mouse on a point of the illustration. It differs from pressing Ctrl Plus and Ctrl Minus, because the point where you click is kept in place, and only all the other points move.
    Zooming In is done by clicking the mouse and Zooming Out is done by pressing the ALT key and clicking the mouse. The Zooming In works on all computers, but for some strange reason, the Zooming Out doesn't work on all computers. The computer where it doesn't work, after pressing the ALT key and clicking the mouse, it does not recognize the mouse click, and never reaches the mousePressed method in my debugger.
    The computer where it doesn't work has the Windows XP Professional operating system. But some computers where it does work have the same operating system. The problem also does not depend on the keyboard or mouse, because I tried a different keyboard and mouse, and it still didn't work.
    I wonder if the reason why it doesn't work on some computers has to do with that the ALT key is also used differently (which might depend on the operating system)? Pressing the ALT key and clicking the mouse Zooms In a picture by keeping the point in place and only moving all the other points
    I do not want to use a different key, since one release of my program is a plugin for Photoshop, and Photoshop also uses the ALT key to achieve the same thing.
    Thanks for checking on this! I will appreciate your help!

    Ok, I did apply KeyBindings. Since the AnanyaCurves class extends JFrame, I couldn't apply KeyBindings there, but I could apply KeyBindings to my CurveCanvas class, which extends JPanel, which extends JComponent. However I still have my first two problems:
    1) After pressing the ALT key, clicking the mouse doesn't get recognized. You never reach the mousePressed method, where it's supposed to exit the program.
    2) After opening a menu, such as the Nothing menu by pressing ALT and N, pressing a key which is not an accelerator key of a menu doesn't get recognized, such as pressing the E key. You never reach the actionPerformed method of the exitF action, where it's supposed to exit the program.
    Here is my SSCCE with the KeyBindings:
    import java.awt.*;
    import java.awt.event.*;
    import java.lang.*;
    import java.lang.reflect.*;
    import java.util.*;
    import javax.swing.*;
    import javax.swing.plaf.*;
    public class AnanyaCurves extends JFrame
      CurveCanvas canvas;
      JMenuBar menuBar;
      Command quitCmd;
      JMenu fileMenu, nothingMenu;
      JMenuItem quitItem, nothingItem;
      boolean alt;
      public AnanyaCurves(Dimension windowSize)
        Font boldFont = new Font("Verdana", Font.BOLD, 12);
        Font plainFont = new Font("Verdana", Font.PLAIN, 12);
        Object top;
        Basics.ananyaCurves = this;
        alt = false;
        try
          UIManager.setLookAndFeel(UIManager.getCrossPlatformLookAndFeelClassName());
          SwingUtilities.updateComponentTreeUI(this);
        catch(Exception e)
        UIManager.put("MenuItem.acceleratorFont", new FontUIResource(UIManager.getFont("MenuItem.acceleratorFont").decode("Verdana-PLAIN-12")));
        Basics.ananyaCurves = this;
        enableEvents(AWTEvent.WINDOW_EVENT_MASK);
        setTitle("Ananya Curves");
        Dimension docSize = new Dimension(274, 121);
        canvas = new CurveCanvas(docSize);   
        menuBar = new JMenuBar();
        setJMenuBar(menuBar);
        fileMenu = new JMenu("File");
        fileMenu.setMnemonic('F');
        fileMenu.setFont(boldFont);
        quitCmd = new Command("quit", "ctrl Q");
        quitCmd.putValue(Action.NAME, "Quit");
        quitItem = new JMenuItem(quitCmd);
        quitItem.setFont(plainFont);
        fileMenu.add(quitItem);
        menuBar.add(fileMenu);
        //fileMenu.setVisible(false);
        /*JMenuBar hiddenMenuBar = new JMenuBar();
        hiddenMenuBar.add(fileMenu);
        getContentPane().add(hiddenMenuBar, BorderLayout.CENTER);
        getContentPane().add(new JPanel(), BorderLayout.CENTER);*/
        nothingMenu = new JMenu("Nothing");
        nothingMenu.setMnemonic('N');
        nothingMenu.setFont(boldFont);
        nothingItem = new JMenuItem("NoAction");
        nothingItem.setFont(plainFont);
        nothingMenu.add(nothingItem);
        menuBar.add(nothingMenu);
        addMouseListener(new MouseAdaption());
        addKeyListener(new KeyAdaption());
      public static void main(String[] args)
        Dimension windowSize = new Dimension(300, 200);
        AnanyaCurves ananyaCurves = new AnanyaCurves(windowSize);
        ananyaCurves.pack();
        ananyaCurves.setBounds(0, 0, windowSize.width, windowSize.height);
        ananyaCurves.setVisible(true);
        ananyaCurves.requestFocus();
      public void exit()
        this.dispose();
        System.exit(0);
      class MouseAdaption extends MouseAdapter
        public void mousePressed(MouseEvent e)
          if (AnanyaCurves.this.alt == true)
            AnanyaCurves.this.exit();
      class KeyAdaption extends KeyAdapter
        public void keyPressed(KeyEvent event)
          /*int keyCode = event.getKeyCode();
          if (keyCode == KeyEvent.VK_ALT)
            AnanyaCurves.this.alt = true;
          else if (keyCode == KeyEvent.VK_E)
            AnanyaCurves.this.exit();
        public void keyReleased(KeyEvent event)
          AnanyaCurves.this.alt = false;
    class Basics extends java.lang.Object
      public static AnanyaCurves ananyaCurves;
      public Basics()
    class Command extends AbstractAction
      String name; // the command name (not the menu item string)
      String accelerator;
      public Command(String name, String accelerator)
        super();
        this.name = name;
        if (accelerator != null && !accelerator.equals(""))
          this.accelerator = accelerator;
          KeyStroke k = KeyStroke.getKeyStroke(accelerator);
          putValue(Action.ACCELERATOR_KEY, k);
      public void quit()
        Basics.ananyaCurves.dispose();
        System.exit(0);
      public void actionPerformed(ActionEvent actionEvent)
        try
          Method f = getClass().getMethod(this.name, (Class[])null);
          f.invoke(this, (Object[])null);
        catch (NoSuchMethodException e)
        catch (InvocationTargetException e)
        catch (IllegalAccessException e)
    class CurveCanvas extends JPanel
      public CurveCanvas(Dimension docSize)
        super();
        Action altF = new AbstractAction()
          public void actionPerformed(ActionEvent e)
            Basics.ananyaCurves.alt = true;
        Action exitF = new AbstractAction()
          public void actionPerformed(ActionEvent e)
            Basics.ananyaCurves.exit();
        this.getInputMap(WHEN_IN_FOCUSED_WINDOW).put(KeyStroke.getKeyStroke("ALT"), "alt");
        this.getActionMap().put("alt", altF);
        this.getInputMap(WHEN_IN_FOCUSED_WINDOW).put(KeyStroke.getKeyStroke("E"), "exit");
        this.getActionMap().put("exit", exitF);
    In the getInputMap method I was trying to use the condition WHEN_IN_FOCUSED_WINDOW, hoping that the bound key would be recognized, but it didn't work. And, by the way, I still used the KeyAdapter so that the alt attribute of AnanyaCurves can be set to false when the ALT key is released.
    I will appreciate your help very much! Thanks for your time!

  • When using the clone stamp tool and press the alt key layer just moves

    when using the clone stamp tool and press the alt key to set a point it seem to create a new layer and just moves the layer arround. I can not get the clone to now work. what did I do?

    Open the Clone Source panel. I think you'll find the Clipped option is disabled. If so, enable it.

  • How can I disable the alt-menu shortcuts

    I'd like to disable the menu-key shortcuts (alt+h, alt+f, alt+b, etc).
    They are interfering with vimperator. How can I turn them off?

    I don't think that you can disable those shortcuts.
    You may be able to change the modifier that is used.
    *http://kb.mozillazine.org/ui.key.chromeAccess
    *http://kb.mozillazine.org/ui.key.contentAccess

  • Disable the "ALT + F4" in my frame

    how can i disabled the "ALt + F4" funcionallity in my frame?
    I have the keyListener and when i get the "Alt + F4" key, my application dies.
    thanks

    Pressing Alt+F4 is the same than closing the window with the "x" widget.
    By default, Swing JFrames hide themselves when they are closed.
    There are two ways to change this behaviour, one inherited from AWT Frames (adding a WindowListener) and one new to JFrames (using setDefaultCloseOperation).
    I don't think you can distinguish close operations initiated by the keyboard from those initiated by the widget.

  • How can I permanently disable the "fn" key?

    Hi.  My subject says it all.  How can I permanently disable the "fn" key?
    At first I thought I had a virus or something because when I typed only weird symbols came out.  Then I reset the computer.  Then I couldn't even log in.  I tried Time Machine etc.
    Then I realized that the "fn" key wasn't working right.  It seems to be working backwards.  It acts like it's being pushed when it's not, and when I do push it it acts like it's not being used.
    So it's kind of a simple problem but it's really annoying.
    Is there a way I can just disable it permanently?  Even physical force if necessary.  I tried to break it but it wouldn't break.  I don't really use the key anyway so it doesn't really matter.  I don't want to pay a bunch of money to replace a key I don't even use.
    Thanks.  I hope someone knows.

    That's the best answer.  Yeah usually if you press "fn" or "option" you can get it to work for awhile.
    Yeah I have considered some kind of external keyboard also.  It will make a laptop less laptopish.  But it could do the job for awhile.
    It's sad because I don't even care about the "fn" or "option" keys.
    But anyway it's not catastrophic at least.
    And yeah maybe we can get a new computer later or something.  I like mine though.  It's customized and is how I like it right now.
    Anyway thanks for the reply.

  • I have MacAir with OS 10.8.4, how can I cancel the automatic link of my USB flashdisk to Mac instead of BootCamp, since I have one time press the ALT key before choosing "MAC" or "BOOTCAMP". Thanks

    I have MacAir with OS 10.8.4, how can I cancel the automatic link of my USB flashdisk to Mac instead of BootCamp, since I have one time press the ALT key before choosing "MAC" or "BOOTCAMP". Thanks

    That only happens when you are running Windows in a Virtual Machine with OS X as the host. Shut down the VM and restart your Mac.  Once the VM is running again and you insert a USB flash drive you should get that prompt again.

  • I copied our entire music folder from old PC on tovnew iMac, all our muisc is there, but not our individual libraries have gone. and holding down the alt key when opening iTunes, brings up no options to choose or create  libarys, can i recover our liba

    Hi
    I copied our entire music folder from our old pc on to the new imac, and all the apps, music etc is there, but no individual libarys, we had 5 very different ones, when pressing and holding the alt key on opeing itunes, nothing happens it just opens into itunes, no option to choose or create a libary, what am i doing wrong?

    Did you copy the entire iTunes folder, not just media?  This includes the critical library.itl file.
    Image of folder structure and explanation of different iTunes versions (turingtest2 post) - https://discussions.apple.com/message/13025536 and https://discussions.apple.com/message/17457605
    Now you say you had 5 libraries.  If you really mean that then you would have to have copied 5 different iTunes folders in their entirety, not just one folder.  Anyway, something makes me feel you did not copy a whole iTunes folder and all its subfolders and files, you only copied the music.
    On the starting with the option (alt) key held down I really don't know what to advise.  It works for me hundreds of times and just about everybody else here.  The only thing I can suggest is to hold the key down longer or perhaps start iTunes and then 1 second later hold down the key for a few seconds.

  • I still can't pull my 'file' bar up. I pressed the ALT key like it instructed. Help!!

    I have tried to make my 'file' bar come on by pushing the ALT key and it will not pull up. How can I contact you to get this fixed? Its very aggrevating to have firefox in full-screen mode.

    Bob,
    You can place contacts in a table In Numbers by the following methods:
    Numbers 2.3:
    drag from contacts
    Numbers 3.2
    copy from contacts, then paste into Numbers
    In both cases you need to open System preferences, then select the "Security & Privacy panel and allow Numbers aaccess your contacts information.

  • Disabling the enter key

    Hi, I have a jsf page that has an <h:inputText> fileld, and whenever I fill it and press enter the form gets submmited. I want to disable the enter key, so that if the user hits enter nothing will happen. This way the form will only be submmited by clicking a button with the mouse.
    Thank you,
    Komyg

    You can use javascript to do this. The merits of using javascript can be saved for another time. Simply put 'javascript disable enter key' in a Google search and you will find what you need. Here is the link at the top of that list:
    http://www.felgall.com/jstip43.htm
    Good luck.

  • How do you disable the shortcut key in Mail that deletes all mail in the trash folder

    Is there a way to disable the shortcut key in Mail in Mountain Lion that deletes all mail in the Trash folder in all accounts: <shift><command><delete> ?
    I did it once by mistake and it deleted all my trash - it is very difficult to restore when there are thousands of messages in various emaiil accounts.
    Thanks

    While you can't (so far as I know) remove it - you can assign a different (& less likely to be used accidentally) one via System Preferences - Keyboard - Shortcuts.
    Go there, create a new one (or 2) for Mail only, and give it the exact name(s) if the menu item(s) in question, capitalisation & ... included.
    Below is on 10.6, but the idea's the same

  • Disable the access key.

    hi gurus,
    pls send me the step by step procedure for disable the access key.
    regards,
    anuj

    hi
    good
    i doint think there is any procedure to disable the access key,only think you can do is,you can ask for the access key from the client  and use that.
    Thanks
    mrutyun^

  • Disable the Backquote key " ` "

    Hello, I am attempting to disable my backquote key.  (The ` / ~ key, at the very top left of the keyboard)
    Is there any way to do this?  I've tried the third-party app "Karabiner," however no such option exists, and I am unsure how to properly edit the included 'private.xml' to achieve the desired effect.
    Thanks,
    Lex

    hi
    good
    i doint think there is any procedure to disable the access key,only think you can do is,you can ask for the access key from the client  and use that.
    Thanks
    mrutyun^

  • Disable the Help Key

    Hi,
    I have a Macbook Pro and Wireless keyboard. I am constantly hitting the "Help" key on accident and it's very frustrating when the help box pops up.
    Is there a way to disable the "Help Key"?
    Thanks!

    Hi N7Daniel,
    Welcome to the HP Support Forums, I hope you enjoy your experience! To help you get the most out of the HP Forums I would like to direct your attention to the HP Forums Guide First Time Here? Learn How to Post and More.
    I see that you are having some problems accessing your BIOS. F10 doesn't work with Windows 8. If you scroll down in your own link it mentions that to access the BIOS you need to go to your Advanced Options and then select Troubleshooting and then the UEFI Firmware Settings. That will bring you to the BIOS. This is all under Accessing UEFI BIOS section of your link. There you can Disable the Function Keys.
    Thank you,
    Please click “Accept as Solution ” if you feel my post solved your issue.
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!
    Thank you,
    BHK6
    I work on behalf of HP

Maybe you are looking for

  • Link a pdf or word file to Keynote

    I wish to create a link in Keynote to a multi page pdf document. It is simply too long to place on a page. I have not been able to find a way to do so. Does anyone know how to do this? My object is to burn the presentaiton to disk along with the file

  • Add field name in to Layout - Column Set

    Hello Everyone! When I run the report that there are three icons on the tool bar. Change / Select / Save layouts. When you press the change layout icon, a pop up appears displaying two columns. 1) Columns 2) Column Set Can anyone tell me where I can

  • Finding Application Module name in read-only view object classes

    Hi all, I have a fairly basic question about finding application module name when we are coding in ViewObject java classes. I want to know how can I obtain <<application module>> NAME that our current view object is contained in it at run-time. I thi

  • Buying the right camcorder

    So...continuing a discussion I posted a couple weeks ago, I've been diligently reading and looking into buying a new camcorder.  I'm currently using a nice Sony Mini-DVD Handycam, but my problem is when I bring content into Premiere Elements I'm havi

  • When will FCE support AVCHD Lite?

    As far as I can tell with several Internet searches coupled with a lot of futzing with my Lumix camera, FCE does not support AVCHD Lite. Is support for this going to happen? When? Thanks much. Benny