Keyboard locked in Caps

Hi all,
I have a small problem on my MBA (Late 2010) which is kind of annoying. Sometime, the keyboard decides to lock itself in Caps, and this without pressing on the shift or caps lock keys. In the middle of a sentence, if will decide to lock itself and that sometimes stays for a long time. Try to restart it when it does that, and it will boot in safe mode (as when you press shift during the starting process), minimze app and it will do that in slow motion, as when you press Shift. Not sure it is hardware as it does it without pressing the Caps keys at all.
It just appeared after upgrading to 10.6.7... not sure it is releted?
Any idea (I am not going to be near an Apple store and maintenance Center for a month at least).
thx

Thanks again for your replies. In fact, the USB keyboard is not and cannot be the problem, not sure I was very clear before. I used to use my MBA only with its own keyboard (no external keyboard plugged). Since I bought it, late december, I had absolutely no problem, but after doing the 10.6.7 update (and I am not saying that there is a relationship), I started having this problem of the Caps (SHIFT key) being locked. This is not all the time, but most of the time. For example today, it worked fine for 5 ours, and then in the middle of the afternoon, the keyboard locked itself in Caps (however, yesterday it was locked the whole day in Caps).
The consequences, despite the fact that I write with caps, are that:
1) minimizing any windows will be done in slow motion as if you press the SHIFT when doing so
2) when I restart the computer it will start in Safe boot mode as if SHIFT was pressed during start up.
3) I cannot select one file, email or folder, but it will select everything from the beginning to the one I clicked on, as if SHIFT was pressed when you select a file, mail or folder.
The only way I am able to use normally my MBA at the moment is by plugging a USB keyboard to it (and I only have a PC one, but this is not an issue). So the USB keyboard is not the cause, but a temporary (I hope) solution to my problem. I am sorry for not being clear enough in my previous post.
I did run a hardware test, I did run the disk utility, did the resets... but still the same problem is happening. I created the Test account, and same thing, when it is locking itself, I will have Caps only on both accounts, as well as on Windows 7 running under Parallels 6.
It is a pity because I love my MBA, which is my first Mac experience... Really annoying though when you are in a small country with no Apple reseller or maintenance center.

Similar Messages

  • Keyboard locked on caps lock

    Somehow my keyboard has locked itself on caps lock regardless of whether the caps lock button is lit or not.  i have logged out and now can't log in again as my password is lowercase letters.  can anyone help?

    DID YOU EVER GET A RESPONSE ON THIS?
    I HAVE THE SAME PROBLEM WITH MY 2011 MacBook Pro
    only way to get lower case letters is with extenal USB keyboard

  • HT1338 Occasionally my caps lock key blinks some time later my keyboard locks up what is causing the blinking and is it related to my keyboard locking.

    Occasionally my caps lock key blinks some time later my keyboard locks up what is causing the blinking and is it related to my keyboard locking.
    This blinking occurs when no keyboarding is going on.
    Back-up is not running.
    I am on-line.

    Anthony:
    The normal practice is to use the Shift key when typing a single Capital letter, as in a name or the beginning of a sentence, and the Caps Lock key to type all caps. The easiest thing would be for you to retrain your little finger to use the Shift instead of Caps Lock. I know of no way to display an icon at the bottom of the monitor to display that the caps lock key is engaged.
    cornelius

  • Can't log in with valid password, can't boot from disk, can't access disk utility, in single user mode can't reset password as appears locked in caps mode with '?' for forward slash, can anyone help?

    Can't log in with valid password, can't boot from disk, can't access disk utility, in single user mode can't reset password as appears locked in caps mode with '?' for forward slash, can anyone help?

    Which keyboard layout you were using? German, French ... I suppose your layout is reset to the default: US and you are unable to find the "?" or "/" ...
    Please have a look into the keyboard viewer, to see how the layout of your keyboard is actually.
    marek

  • Newish metal keyboard with a cap problem

    I have a problem with my keyboard.
    The cap key will only work sometimes - the light only comes on 50% of the time.
    I took it to my local apple shop, who after checking,told me it was the key needs to be hit in the centre!
    this doesnt seem right...?

    I've had my aluminum keyboard for 20 days...."caps key" began unresponsiveness intermittently about three days ago...went to Apple Chat....agent referred me to Apple article that suggested disconnecting and reconnecting keyboard USB...did that, and even reconnected in different USB port. That fixed the unresponsiveness....for about 4 minutes....."caps lock" key is now back to intermittent responsiveness...regardless of WHERE or how hard I tap "caps lock" key...even blew air into key...no help.

  • Select keys not working (including num lock and caps lock)  PRAM won't rese

    Help, I have a number of keys that stopped working including the "o" "9" number lock and caps lock (the lights on the number lock and caps lock don't work)
    oh- I'm writing this from another computer so all are working on this one, let you think i'm crazy.
    Tried to reset the SMC per instructions. Sounds like there is no "confirmation" that that was done. Tried resetting my pram (comand option p r) I don't get the "reset" sounds, it just boots up as normaal.
    Suggestions????
    Thanks

    Welcome to Apple Discussions!
    Have you tried an external keyboard? If an external keyboard works without issue, there is something wrong with your built in keyboard. If you get the same issues, you may have a software problem or glitch of some sort.
    If you create a new user account, do you still have the same problems? If not, there could be a problem with your usual account.
    Was there ever a spill or anything that might have affected your built in keyboard?
    Good luck!

  • Keyboard-lock of swing program on Linux box

    We are developing swing program on Linux, and we often meet keyboard-lock issues.
    I try to simplify some of them to small programs, and still meet keyboard-lock.
    Here I post two programs to show the error:
    //---first ----------------------------------------------
    package test;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.util.*;
    public class KeyLock extends JFrame {
      JPanel contentPanel = new JPanel();
      JPanel wizardToolPan = new JPanel();
      JButton btnBack = new JButton("Back");
      JButton btnNext = new JButton("Next");
      JButton btnAbout = new JButton("About");
      public static final String aboutMsg =
              "<html>  This program will help to find keyboard lock problems, two way to reproduce:<br><br>" +
              "1 - press Alt+N to navigate next, and don't release keys untill there are no more next page, <br>" +
              "then try Alt+B to navigate back and also don't release keys untill page 0,<br>" +
              "repeat Alt+N and Alt+B again and again, keyboard will be locked during navigating. <br><br>" +
              "2 - press Alt+A in main window, it will popup an about dialog,<br>" +
              "then press down space key and don't release, <br>" +
              "the about dialog will be closed and opened again and again,<br>" +
              "keyboard will be locked sooner or later." +
              "</html>";
      public KeyLock() {
        this.setDefaultCloseOperation(EXIT_ON_CLOSE);
        this.setTitle("Keyboard lock test");
        getContentPane().setLayout(new BorderLayout());
        btnBack.setMnemonic('B');
        btnBack.addActionListener(new ActionListener() {
          public void actionPerformed(ActionEvent e) {
            KeyLock.this.goBack(e);
        btnNext.setMnemonic('N');
        btnNext.addActionListener(new ActionListener() {
          public void actionPerformed(ActionEvent e) {
            KeyLock.this.goNext(e);
        btnAbout.setMnemonic('A');
        btnAbout.addActionListener(new ActionListener() {
          public void actionPerformed(ActionEvent e) {
            JOptionPane.showMessageDialog(KeyLock.this, aboutMsg, "About", JOptionPane.INFORMATION_MESSAGE);
        contentPanel.setLayout(new BorderLayout());
        contentPanel.setPreferredSize(new Dimension(400, 250));
        contentPanel.setMinimumSize(new Dimension(400, 250));
        wizardToolPan.setLayout(new FlowLayout());
        wizardToolPan.add(btnBack);
        wizardToolPan.add(btnNext);
        wizardToolPan.add(btnAbout);
        this.getContentPane().add(contentPanel, java.awt.BorderLayout.CENTER);
        this.getContentPane().add(wizardToolPan, java.awt.BorderLayout.SOUTH);
        this.setSize(400, 300);
        this.createContentPanels();
        this.showCurrent();
      private Vector<JPanel> slides = new Vector<JPanel>();
      private int current = 0;
      private void createContentPanels() {
        for (int j = 0; j < 20; ++j) {
          JPanel p = new JPanel(new FlowLayout());
          p.add(new JLabel("Page: " + j));
          p.add(new JTextField("Page: " + j + ", input something here", 20));
          p.add(new JTextField("Page: " + j + ", input something here", 20));
          p.add(new JTextField("Page: " + j + ", input something here", 20));
          p.add(new JLabel("Input something in password box:"));
          p.add(new JPasswordField(20));
          p.add(new JCheckBox("Try click here, focus will be here."));
          p.add(new JRadioButton("Try click here, focus will be here."));
          slides.add(p);
      public void showCurrent() {
        if (current < 0 || current >= slides.size())
          return;
        JPanel p = slides.get(current);
        this.contentPanel.add(p, java.awt.BorderLayout.CENTER);
        this.pack();
        Component[] comps = p.getComponents();
        if (comps.length > 0) {
          comps[0].requestFocus(); // try delete this line
        this.repaint();
      public void goNext(ActionEvent e) {
        if (current + 1 >= slides.size())
          return;
        this.contentPanel.remove(slides.get(current));
        current++;
        sleep(100);
        this.showCurrent();
      public void goBack(ActionEvent e) {
        if (current <= 0)
          return;
        this.contentPanel.remove(slides.get(current));
        current--;
        sleep(100);
        this.showCurrent();
      public static void sleep(int millis) {
        try {
          Thread.sleep(millis);
        } catch (Exception e) {
          e.printStackTrace();
      public static void main(String[] args) {
        KeyLock wizard = new KeyLock();
        wizard.setVisible(true);
    }The first program will lead to keyboard-lock in RHEL 4 and red flag 5, both J2SE 5 and 6.
    //---second -----------------------------------------
    package test;
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    public class KeyFocusLost extends JFrame {
      private JButton btnPopup = new JButton();
      private JTextField jTextField1 = new JTextField();
      private JPasswordField jPasswordField1 = new JPasswordField();
      private JPanel jPanel1 = new JPanel();
      private JScrollPane jScrollPane3 = new JScrollPane();
      private JTree jTree1 = new JTree();
      private JButton btnAbout = new JButton("About");
      public static final String aboutMsg =
              "<html>  This program is used to find keyboard focus lost problem.<br>" +
              "Click 'popup' button in main window, or select any node in the tree and press F6,<br>" +
              "a dialog popup, and click ok button in the dialog,<br>" +
              "keyboard focus will lost in main window." +
              "</html>";
      public KeyFocusLost() {
        this.setDefaultCloseOperation(EXIT_ON_CLOSE);
        this.setTitle("Keyboard focus test");
        getContentPane().setLayout(null);
        btnPopup.setBounds(new Rectangle(33, 482, 200, 35));
        btnPopup.setMnemonic('P');
        btnPopup.setText("Popup and lost focus");
        btnPopup.addActionListener(new ActionListener() {
          public void actionPerformed(ActionEvent e) {
            PopupDialog dlg = new PopupDialog(KeyFocusLost.this);
            dlg.setVisible(true);
        btnAbout.setBounds(new Rectangle(250, 482, 100, 35));
        btnAbout.setMnemonic('A');
        btnAbout.addActionListener(new ActionListener() {
          public void actionPerformed(ActionEvent e) {
            JOptionPane.showMessageDialog(KeyFocusLost.this, aboutMsg, "About", JOptionPane.INFORMATION_MESSAGE);
        jTextField1.setText("Try input here, and try input in password box below");
        jTextField1.setBounds(new Rectangle(14, 44, 319, 29));
        jPasswordField1.setBounds(new Rectangle(14, 96, 319, 29));
        jPanel1.setBounds(new Rectangle(14, 158, 287, 291));
        jPanel1.setLayout(new BorderLayout());
        jPanel1.add(new JLabel("Select any node in the tree and press F6."), java.awt.BorderLayout.NORTH);
        jPanel1.add(jScrollPane3, java.awt.BorderLayout.CENTER);
        jScrollPane3.getViewport().add(jTree1);
        Object actionKey = "popup";
        jTree1.getInputMap().put(KeyStroke.getKeyStroke(KeyEvent.VK_F6, 0), actionKey);
        jTree1.getActionMap().put(actionKey, new AbstractAction() {
          public void actionPerformed(ActionEvent e) {
            PopupDialog dlg = new PopupDialog(KeyFocusLost.this);
            dlg.setVisible(true);
        this.getContentPane().add(jTextField1);
        this.getContentPane().add(jPasswordField1);
        this.getContentPane().add(jPanel1);
        this.getContentPane().add(btnPopup);
        this.getContentPane().add(btnAbout);
      public static void main(String[] args) {
        KeyFocusLost keytest = new KeyFocusLost();
        keytest.setSize(400, 600);
        keytest.setVisible(true);
      static class PopupDialog extends JDialog {
        private JButton btnOk = new JButton();
        public PopupDialog(Frame owner) {
          super(owner, "popup dialog", true);
          setDefaultCloseOperation(DISPOSE_ON_CLOSE);
          this.getContentPane().setLayout(null);
          btnOk.setBounds(new Rectangle(100, 100, 200, 25));
          btnOk.setMnemonic('O');
          btnOk.setText("OK, then focus lost");
          btnOk.addActionListener(new ActionListener() {
            public void actionPerformed(ActionEvent e) {
              PopupDialog.this.getOwner().toFront();
              try {
                Thread.sleep(100); // try delete this line !!!
              } catch (Exception ex) {
                ex.printStackTrace();
              PopupDialog.this.dispose();
          this.getContentPane().add(btnOk);
          this.getRootPane().setDefaultButton(btnOk);
          this.setSize(400, 300);
    }The second program will lead to keyboard-focus-lost in RHEL 3/4 and red flag 4/5, J2SE 5, not in J2SE 6.
    And I also tried java demo program "SwingSet2" in red flag 5, met keyboard-lock too.
    I guess it should be some kind of incompatibleness of J2SE with some Linux platform. Isn't it?
    Please help, thanks.

    Hi.
    I have same problems on Ubuntu with Java 6 (all versions). I would like to use NetBeans or IntelliJ IDEA but it is not possible due to keyboard locks.
    I posted this bug
    https://bugs.launchpad.net/ubuntu/+bug/174281
    before I found some info about it:
    http://forums.java.net/jive/thread.jspa?messageID=189281
    http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6506617
    http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6568693
    I don't know from which part this bug comes, but I wonder why it isn't fixed yet. Does anybody else use NetBeans or IntelliJ IDEA on linux with Java 6 ?
    (I cannot insert link :\ )

  • How can I make a "Keyboard Lock" while iTunes is playing?

    How can I make a "Keyboard Lock" while iTunes or other apps are playing? They should work/play on, screen should still be on, only keyboard is (maybe Password-) locked.
    Thanx in adv, tttimo

    Menu > Apple > System Preferences > Keyboard > Keyboard Shortcuts Application Shortcuts > + > Application: Browse to Pages > Menu Title: Footnote > Keyboard Shortcut: hit combination of keys > Add
    You will need to restart Pages but should then see it next to your Menu item.
    Peter

  • Wireless keyboard light on caps button does not come on

    wireless keyboard light on caps button does not come on

    Hello:
    That is some sort of anomaly that I have also noticed.  On the rare occasions when that happens, a restart corrects the issue.
    Barry

  • Keyboard lock and unlock for 8330

    I need a way to lock and unlock the keyboard.  I have searched a number of websites for an answer to my dilema and it seems several methods are mentioned but none work for me.  I need to lock the keyboard when phone is in my pocket.  Many thanks to anyone who can help.

    Well, according to your device manual, this is the procedure:
    Lock the keyboard
    If you do not set a BlackBerry® device password, you can lock your keyboard to avoid making calls and pressing keys accidentally.
    On the Home screen or in the application list, click Keyboard Lock.
    To unlock the keyboard, press the asterisk (*) key and the Send key.
    You can look further into your manual here:
    http://www.blackberry.com/btsc/microsites/search.do?cmd=displayKC&docType=kc&externalId=http--docsbl...
    Good luck.
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Need Help! Blackberry 8300 Keyboard Locked-up

    Need Help!  Blackberry 8300 keyboard locked-up.  Trackball can scroll but cannot activate programs. Cannot use keys to answer phone, activate programs, etc.  I have taken battery out to reboot/reset but no luck.  Any help/suggestions would be greatly appreciated.  Thanks! 

    What version of iTunes is on the computer?
    You may need iTunes 10.5 or later. That requires OSX 10.5.8 or later.
    You will also have to place the iPod in Recovery mode in order to allow you to restore the iPod.
    iOS: Wrong passcode results in red disabled screen

  • E72 - How can i turn off the keyboard lock functio...

    How can I turn off the keyboard lock function?  If I don't want it to auto lock after 5 mins but stay active, can I turn the auto lock off completely?  I've checked Control Panel - Settings - General - Security - Phone and SIM Card and there appears to the the option, but when you try and select 'off' it doesn't allow you to turn it off.... Help?
    Solved!
    Go to Solution.

    "it is there my frend., go to Menu - Control Panel - Settings -  General - Security - Phone and Sim Card
    then scroll down and select keypad auto lock period"
    Got it from...
    /t5/Eseries-and-Communicators/E72-shortcut-key-key​pad-lock/m-p/572418 bout halfway down. I know I had a google need to find this answer.
    Samsung Galaxy S4 'Black' (current)
    My N9 Black (backup phone)
    My N8 Green runnin Xeon^4 3.2.1
    My E72 White
    My E63 BLUE
    http://www.youtube.com/Jeahavee
    http://www.reverbnation.com/jeahavee
    Stop with the popup notes Nokia sheesh I don't need help from you :/
    I run Windows 7 Home Premium 64bit/Black Opal on my HP Dv6 1030us (DiViUs)
    Windows 7 64 bit Pro and Black Opal on my custom desktop (Giniro)

  • BPS keyboard lock issues

    Hi all,
    I've various layouts for forecasting.I execute the planning folder to enter forecasting values.
    My problem is -
    Sometimes when I log into the screen(after executing the plng folder) for the first time, the keyboard locks and you have to click on the check button to enable it. Can this be solved?
    Any help will be appreciated.
    Thanks in advance.
    Isha

    Hi,
    This has happen to me very often...if you execute planning folders with excel as the front end.
    The keyboard is not locked but even if a cell is selected and you enter digits...they just don't appear. Surprisingly, digits entered become part of the excel macros. When you press refresh the macro debugger gets started as the code (with the digits just added) is wrong. It's a nightmare.
    This does not happen in all our computers. If you select a cell by double clicking over it...the system works fine.
    Yes, strange but true.
    Alberto Sabate

  • Keyboard locked and frozen

    hi.
    since i installed arch64 on my new machine,  my keyboard randomly froze and i can't type anything with it anymore. I had everytime to log out from X. and then i can use it again.
    when it is locked even typing a key like capslock or numlock do not change the led on the keyboard
    so though i first thought it was an hardware problem with the usb dell keyboard, i think now it has to do with kde or X.
    anyone ?
    i have changed the line
    Option "XkbModel"    "dell"
    in my xorg.conf to:
    Option "XkbModel"    "pc105"
    but i still got that problem.
    it seems to happen when i want to type too fast and type 2 or 3 keys at the same time with a ctrl or alt or altgr or win key. don't know

    Am using:
    64-bit AMD
    32-bit Arch kernel and other packages
    nVidia
    xorg
    kde
    On-board video is: nVidia Corporation: GeForce 6100 nForce 405
    All software (kernel, drivers, etc.) are up to date.  Yet, another lockup happened about 30 minutes ago.
    When the keyboard locks up, it feels like it's locked up, but has not.  If I hold down any character long enough, it comes through.  Same goes for modifier keys.   So, to do Shift-A, have to hold down the Shift key for about two seconds, then hold down the A key for two seconds.  Typing a password is excruciating -- OK, really, impossible.
    Since the mouse consistently works, I can kill applications and then K->Log Out...->End Session OR start a new session.  When the X login appears, all is well.
    If I start a new session, the keyboard works just fine in the new session.  If I return to the original session (Ctrl-Alt-F7), the keyboard is still locked up in that session.  Go figure.
    Seems like all reports about this mention keyboard locking up.  Can anyone try this next time?  Hold a key down and see if in a few seconds it comes through.  Would be interesting to see how many cases there re of complete lock up vs just a super slow keyboard response.  (And who knows.  This info. might even help someone find the root cause.)
    EDIT: To try to fix this problem have tried various mouse and keyboard brands.  Have tried unplugging and plugging back in the keyboard and mouse several times (right after a lock up).  Have also tried to avoid various applications -- just in case it's related to user space interaction (getting desperate, I guess).  The problem persists.  It's very random, too.
    Last edited by soloport (2007-12-02 03:35:34)

  • IOS7 on iPad mini. Now my keyboard locks up and won't type. Any ideas or help?

    IOS7 on iPad mini and now keyboard locks up and won't type. Any help here?

    thanks for the reply, brian, but unfortunately that is what i meant by the hard reboot.  i've done that many, many times and it's still stuck.  nothing is helping and i can't even get it to sync to iTunes to restore it.
    thanks anyway!

Maybe you are looking for

  • HT1430 Emails download to phone, but don't appear in Inbox

    I noticed yesterday that my iPhone 5 would appear to download about 45 messages from my Comcast email account, but the new emails wouldn't appear in my inbox.  Apple's website support suggested turning of my phone and then restarting it (didn't work)

  • Unable to start IDC Content Service(Very Urgent)

    Hi, My local system has Windows XP.I have installed Oracle 10g Express Edition,Apache,has jre1.6.0_03 and run the UCM installer.Both IDC Content Admin Service and IDC Content Service are set to start automatically during installation time."IDC Conten

  • Value axis in WAD Chart

    Hello Experts I am using a Chart web-item in a WAD web template. Now I have set up the value axis and the sample data property of the chart with a minimum value = -500 and max value = 3000. However, when I execute the web template on the portal the v

  • Display PO item text before save

    Need to display item text of Purchase Order in print preview before the PO is saved. How do I achieve this. When PO is saved Iable to get the Item text using FM : Read_Text. I have searched the thread mentioned solutions donot satisfy my requirement.

  • Writing an A4 document to A4 pdf

    Each time I try writing my A4 document to A4 pdf, I end up with Letter (8.5" x 11"). When I click ctrl + P, I choose Printer Properties and in the Adobe PDF Settings tab of the ADobe PDF Document Properties window, I am choosing A4 under Adobe PDF Pa