Left shift key remapped into alt key

Hi Everybody
The left shift key of my Macbook air started to work exactly like the alt key, like it was remapped.
(the alt key works normally)
The solution of the problem might be simple but I couldn't find any way to change the behaviour in Maverick.
Can anyone help?
Thanks
and14

Try a restart.
Do a backup, using either Time Machine or a cloning program, to ensure files/data can be recovered. Two backups are better than one.
Try setting up another admin user account to see if the same problem continues. If Back-to-My Mac is selected in System Preferences, the Guest account will not work. The intent is to see if it is specific to one account or a system wide problem. This account can be deleted later.
Isolating an issue by using another user account
If the problem is still there, try booting into the Safe Mode using your normal account.  Disconnect all peripherals except those needed for the test. Shut down the computer and then power it back up after waiting 10 seconds. Immediately after hearing the startup chime, hold down the shift key and continue to hold it until the gray Apple icon and a progress bar appear. The boot up is significantly slower than normal. This will reset some caches, forces a directory check, and disables all startup and login items, among other things. When you reboot normally, the initial reboot may be slower than normal. If the system operates normally, there may be 3rd party applications which are causing a problem. Try deleting/disabling the third party applications after a restart by using the application un-installer. For each disable/delete, you will need to restart if you don't do them all at once.
Safe Mode
Safe Mode - About
Do you have another keyboard you could test with?

Similar Messages

  • Not Getting Key Code for ALT key

    Hi,
    I am having some trouble in getting key code for alt key. Can Any one help in it.
    I am sharing for source code the way I am trying to do it.
    import flash.events.KeyboardEvent;
    stage.addEventListener(KeyboardEvent.KEY_DOWN, function(e:KeyboardEvent){trace("Key== "+e.keyCode); txt.text=""+e.keyCode;});

    Hi Amanpreet,
    The code i posted was a working example to detect Alt + click. You can try pasting it in the Actions panel of a blank AS3 file, Test Movie, press Alt and Click on the blank area of Stage and see that the trace statement appears in Output panel.
    Flash does not return the keycode of Alt key directly but lets you detect if Alt was pressed or not using 'event.altKey'. This boolean property is available for both Keyboard and Mouse events.
    You can try another sample: (This will only work when you Test Movie on Browser)
    //Place a dynamic textbox named 'txtStatus' on stage to display the text.
    stage.addEventListener(KeyboardEvent.KEY_DOWN, keyHandler);
    function keyHandler(e:KeyboardEvent) {
           txtStatus.text = e.keyCode.toString(); 
           if(e.altKey)
                txtStatus.text = 'alt pressed';
    When you Test Movie in browser, you'll need to click on the Stage area once to set it in focus. Also make sure to embed your fonts or set 'use device fonts' Anti-alias setting to display the text correctly.
    -Nipun

  • CHANGE BRUSH SIZE WITH CTRL and alt KEYS

    Hello everyone,
    i'm on the road with my new macbook and i have a problem with setting up my wacom pen.
    At home i use a iMac with CS5 and to change the brush size i press the alt and the ctrl key and move the pen to left/tight up/down to chang size and hardnes of the brush. I find this very handy!
    On my new Macbook i have CC and i don't have the option to use this easy key combination, i was loking around and did some google, but i could not find the place to get the same settings on my macbook.
    Is there anyone who can help me?
    Thank you very much.

    When you press and hold Option/Alt  + Control  and Left mouse click and drag nothing happens?
    (the button on your pen is set to left click?)
    The Option/Alt key should always be the second key to the left of the spacebar
    The Control key should always be the third key to the left of the spacebar

  • Using alt key in console vim.

    Hi folks,
    Does anyone out there have a working method for using alt-<key> mappings in vim on the console? I've read a fair amount and the consensus seems to be "tweak all these different things to find what works on your system". So, what works on Arch (on a standard PC)?
    First off, I read this:
    http://vimdoc.sourceforge.net/htmldoc/m … p-alt-keys
    I am currently trying some vim maps like
    nmap <a-s> <C-w>s
    And I'm using urxvt, so have tried the following in my .Xdefaults:
    URxvt*meta8:true
    This stops urxvt from converting alt key presses into esc-<key> patterns, but it's not activating the vim map. (It works in gvim BTW).
    Has anyone got this to work? Or is the consensus that esc-<key> patterns are the way to go, with a .vimrc adapted to accept them, e.g. as in this:
    http://vim.wikia.com/wiki/Fix_meta-keys … nsert_mode
    A working config would be much appreciated!
    Pete.

    petelewis wrote:
    Mr.Elendig wrote:it returns ^[a as it should.
    Ah ha - okay. So you're using escapes too, rather than meta8 (this is the default, so makes sense). Yeah, I got it working doing that, but had to adapt my .vimrc to get it to acknowledge the ^[ as "alt". Didn't you, or did a simple map of e.g. <A-a> suffice?
    Are you running it in screen/tmux btw? and what is your TERM set to?
    Yeah, I thought that too and though I do run it in tmux usually, I've been testing it both with and without (TERM is set to screen-256color BTW) and it made no difference. Still, unless I specifically map the ^[ to alt in vim, it doesn't work. With meta8 it works so long as the locale is not UTF-8.
    Guess I've got a workaround for now, but it would be nice if meta8 and utf-8 worked nicely together.
    Thanks.
    Could you please show how your vimrc looks like? I have the same problem and I'm interested in your workaround.

  • InputMap/ActionMap key bindings for arrow keys, alt key

    I'm having trouble defining InputMap/ActionMap key bindings for the arrow keys and the Alt key. My bound actions never run. I believe the problem is that the arrows are used in focus navigation, and the Alt key is used for opening the menu. How can I get these key bindings to work? Is there any other way that I can get events from these keys? I'd even be happy with simple AWT KeyListener events at this point. Thanks.

    I've been having this same problem. I built a demo application that demonstrates the problem. It all works fine until I add the JTree. The JTree seems to be consuming the arrow key strokes. Here is the code:
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.awt.event.KeyEvent;
    import javax.swing.JComponent;
    import javax.swing.JFrame;
    import javax.swing.KeyStroke;
    public class ArrowKeyDemo extends JFrame implements ActionListener {
        private javax.swing.JTree tree;
        private javax.swing.JPanel panel;
        public ArrowKeyDemo() {
            initComponents();
            panel.registerKeyboardAction(this, "A",
                    KeyStroke.getKeyStroke(KeyEvent.VK_A, 0, false),
                    JComponent.WHEN_IN_FOCUSED_WINDOW);
            panel.registerKeyboardAction(this, "left",
                    KeyStroke.getKeyStroke(KeyEvent.VK_LEFT, 0, false),
                    JComponent.WHEN_IN_FOCUSED_WINDOW);
        private void initComponents() {
            panel = new javax.swing.JPanel();
            tree = new javax.swing.JTree();
            addWindowListener(new java.awt.event.WindowAdapter() {
                public void windowClosing(java.awt.event.WindowEvent evt) {
                    exitForm(evt);
            panel.add(tree);
            getContentPane().add(panel, java.awt.BorderLayout.CENTER);
            pack();
        private void exitForm(java.awt.event.WindowEvent evt) {
            System.exit(0);
        public static void main(String args[]) {
            new ArrowKeyDemo().show();
        public void actionPerformed(ActionEvent actionEvent) {
            System.out.println(actionEvent);
    }Having the JTree in there kills the ability to trap key strokes for any other purpose. This seems to be true of other Swing components as well. You can stop the JTree from consuming key strokes by adding the line:
    tree.setActionMap(null);
    But you will probably need to set the ActionMap to null for every Swing component that is trapping key strokes. I'm not 100% sure, but I think that includes scroll panes as well.
    I'd love to hear a more elegant solution.
    --Timothy Rogers

  • Left Shift R's

    I am unable to make a capital r using the left shift. The left shift works for every other key except r. The right shift does them all fine. Kinda annoying to have to right shift for r's.

    Has this always been the case or is it something new? The description of the failure could be related to a drop of moisture, perhaps from a coffee cup or cold glass. Apple's keyboard are very sensitive when it comes to wetness. No matter what I'd take it into the Genius bar and ask someone there to looksee. You'll have a better chance of them fixing the problem for free that way.

  • Left Alt Key remapped to Z not being seen by LINUX FIREFOX

    HP Laptop Z key failed so I remapped Left Alt key as Z in Precise Puppy LINUX. It works as Z in every other program (even CHROMIUM) BUT NOT in FIREFOX.

    Sorry to hear that it is not being detected. As a work around have you tried this addon: [https://addons.mozilla.org/en-US/firefox/addon/customizable-shortcuts/?src=search]

  • Left Shift Key Remapped, How?

    MacBook Air running OS X.
    Left shift key when depressed remaps my keyboard, how can I get it to not do this?  Example below:
    Right Shift Key - ABCDEFGHIJKLMNOPQRSTUVWXYZ?><
    Left Shift Key -   ÅıÇÎ´Ï˝ÓˆÔÒ˜Ø∏Œ‰Íˇ¨◊„˛Á¸¿¯˘
    Help please.
    Kent

    Please read this whole message before doing anything.
    This procedure is a test, not a solution. Don’t be disappointed when you find that nothing has changed after you complete it.
    Step 1
    The purpose of this step is to determine whether the problem is localized to your user account.
    Enable guest logins* and log in as Guest. Don't use the Safari-only “Guest User” login created by “Find My Mac.”
    While logged in as Guest, you won’t have access to any of your personal files or settings. Applications will behave as if you were running them for the first time. Don’t be alarmed by this; it’s normal. If you need any passwords or other personal data in order to complete the test, memorize, print, or write them down before you begin.
    Test while logged in as Guest. Same problem?
    After testing, log out of the guest account and, in your own account, disable it if you wish. Any files you created in the guest account will be deleted automatically when you log out of it.
    *Note: If you’ve activated “Find My Mac” or FileVault, then you can’t enable the Guest account. The “Guest User” login created by “Find My Mac” is not the same. Create a new account in which to test, and delete it, including its home folder, after testing.
    Step 2
    The purpose of this step is to determine whether the problem is caused by third-party system modifications that load automatically at startup or login, by a peripheral device, by a font conflict, or by corruption of the file system or of certain system caches.
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards, if applicable. Start up in safe mode and log in to the account with the problem. You must hold down the shift key twice: once when you boot, and again when you log in.
    Note: If FileVault is enabled, or if a firmware password is set, or if the boot volume is a software RAID, you can’t do this. Ask for further instructions.
    Safe mode is much slower to boot and run than normal, with limited graphics performance, and some things won’t work at all, including sound output and Wi-Fi on certain models. The next normal boot may also be somewhat slow.
    The login screen appears even if you usually log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    Test while in safe mode. Same problem?
    After testing, reboot as usual (not in safe mode) and verify that you still have the problem. Post the results of steps 1 and 2.

  • I updated to maverick, and maybe it's a coincidence but my left shift key doesn't work unless i really press it down.  Is there any way to fix this without bringing it into the Genius Bar?

    i updated to maverick, and maybe it's a coincidence but my left shift key doesn't work unless i really press it down.  Is there any way to fix this without bringing it into the Genius Bar?

    Plugins usually are installed externally to Firefox. However, you can disable them in Firefox so that Firefox does not use them.
    SearchReset is supposed to automate the task of resetting certain preferences, but you still can edit them manually if necessary.
    '''''Address Bar Search'''''
    (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 filter box, type or paste '''keyword''' and pause while the list is filtered
    (3) Right-click '''keyword.URL''' and choose Reset. This should restore Google as the default for address bar search.
    Does that work?
    '''''Search Box'''''
    Usually it works to choose your preferred search engine from the drop-down. To remove an unwanted search engine plugin, usually the Manage Search Engines... choice at the bottom of the drop-down takes care of it.
    Do either of those work?
    There might be another way to hijack that search box; I think some of the other frequent responders probably are more familiar with it than I am.

  • Ctrl-Alt-CapsLock key remapping not honored

    I have the Ctrl-Alt-CapsLock keys remapped on my Win XP system (using 
    MS PowerToys), but Illustrator (14.0) insists on using the original
    positions of these keys.  Anybody know how can I make Illustrator use
    the remapped positions with the built-in shortcuts, for example, when I press the
    key labelled CTRL, I want it to produce the ALT functionality (as it does in every other
    program I ever installed).

    As a bi-platform user of Adobe software, I know exactly why you'd want to interchange the positions of the left Alt and Ctrl keys.
    Unfortunately, when you use post-driver software (that works by intercepting keyboard interrupts), you put yourself at the mercy of "rogue" programmers -- such as those apparently hired by the Adobe Illustrator engineering department -- who have their own peculiar ideas about how things like this should work.
    My solution might sound radical (and it's not cheap), but it works: Buy a keyboard that enables remapping at the firmware level. An example would be the Avant keyboards -- the descendants of the Northgate OmniKey series -- that not only give you key remapping but also some rudimentary macro programming capabilities. They even come with extra keycaps and a keycap removal tool so that you can, for example, keep the labeling correct on your remapped Ctrl and Alt keys. They use Alps mechanical rather than membrane-type key switches, which is great for someone like me (who does a fair amount of writing and loved the original IBM keyboards)... but I do understand that is a matter of personal preference.
    As an added bonus, your key remaps and macros travel with the keyboard. Plug it into another computer, and all of your customizations are right there, ready to go.
    I'm sorry I don't have an easier answer for you.

  • How do I fix my left shift key? Any open windows leave and make the desktop visible.

    How do I fix my left shift key? Any open windows leave and make the desktop visible. I have tired to go into system preferences and reset all of the keyboard settings to default but the issue hasn't gone away.

    You are not running as administrator, I think, which may be required and the only way to properly work and register. Also check for compatibility mode settings, UAC and DEP, all of which may require to be adjusted for a legacy app like PS CS2 to run properly. Also turn off Aero and switch to a conventional visual theme. The brush issue may be related to that or is a more generic problem with your graphics card and mouse config, but since you didn't provide any info on that, it will be hard for anyone to advise.
    Mylenium

  • Why does my Left Shift +Num Keys produce Euro characters and Right Shift + Num Keys produce American?

    I am running Lion (10.7.4) on my 2010 13" MBP. When I press my Left Shift and various Num Keys (1-9), I get Euro characters (⁄ € ‹ › fi fl ‡ ° · ‚). When I use my Right Shift, I get the standard American characters (! @ # $ % ^ & * ( )).
    I have already tried restarting my computer, but this has not helped. In my language/keyboard settings, everything is set to USA. I do have multiple inputs on this machine but the flag is always on US. Occasionally, I switch to Japanese keyboards but those are not active and the problem described above appears when the US flag is displayed.

    It looks like your right shift is somehow also depressing the option/alt key.  I would suspect damage to your keyboard, which may need repair/replacement.

  • T40's Left Shift key makes right click/context menu appear?

    Hello All-
    On my T40, on which I just recently got Windows 7 correctly installed, has a curious behavior:
    When I press the left shift key, it functions the same as if I had pressed the right mouse button.  It functions correctly otherwise, I.E., when using it to capitolize a letter in an email, the letter is capitolized, but as soon as I let go of the shift key, the right click/context menu immediately appears.
    This is exceedingly irritating, as I cannot continue typing until I have navigated out of the menu.
    I have checked to see if the Keyboard Customiser utility is causing this, as I currently have my left Alt key functioning as a Windows button, but it does not appear to be causing this particular issue.
    Does anyone have any idea how I might go about fixing this?
    Thanks in advance,
    G
    Solved!
    Go to Solution.

    Nevermind-
    Had the keyboard customizer set to use the left shfit key as the application key.  Duh.

  • How to detect it left side Alt or right side Alt key pressed?

    Hi,
    I want to know if there is a way to detect whether it is the alt key on the left of the keyboard pressed or it is the alt key on the right side of the keyboard pressed. I don't want to use JNI stuff. Is there a 100% Java solution to it?
    Thanks

    I've seen bug reports regarding this issue, and it is stated as fixed, but I don't know for which release of the jdk. So far, I think you can't distinguish between left and right alt/shift/ctrl..

  • TS3048 I have just purchased a new apple cordless keyboard.  The numeric line of keys along the top are not functioning as they should.  For example I am unable to get a question mark or a forward slash.  I have tried holding down both shift and alt keys.

    I have just purchased a new apple cordless keyboard.  The numeric line of keys along the top are not functioning as they should.  For example I am unable to get a question mark or a forward slash.  I have tried holding down both shift and alt keys.

    Thanks for prompt response - I tried what you suggested but I'm afraid it has not helped.  It seems as though the line of number keys along the top aren't actually doing what is printed on them.  Some are OK, but the further towards the right hand side of the keyboard you go, the less predicatable it becomes.  So whilst the second key from the left gives me 1 and ! when holding the shift key, by the time I get to the 6 when I press and hold shift I get ^ rather than & symbol which is what is actually printed on the key.  The & symbol is actually on the next key along - and when I hit the key with 8 I get * rather than the ( which is printed on they key but actually located on the next key along.  Things get even more muddled by the time I am over on the right hand side as rather than a question mark (I have had to type the word as I cannot find the symbol anywhere!) I get this _ and the other symbol marked on the key is a comma, but I get - instead.  It is going to drive me mad if every time I want to type something it is a guessing game....!  What do you suggest - question mark

Maybe you are looking for