Keyboard lock on word lookup

It seems upon the new update, whenever I lookup a word (e.g. on Pages) the keyboard locks and I must restart the computer in order to restore keyboard functionality. Is this occurring for everybody on the latest update (10.10.3)? It is extremely bothersome and I hope it gets resolved ASAP!

I have also been running into this
since the last upgrade on OS X Yosemite. After eight clicking and attempting a word lookup the lookup returns blank and they keyboard become unresponsive. This will continue until the Mac is rebooted. I am running a 13mbr 2014.

Similar Messages

  • 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

  • Is there a way of locking a word document in ios mountain lion so that it cant be printed or changed?

    Is there a way of locking a word document in mountain lion so it cant be printed or changed?

    You can print because it's your document. Others shouldn't be able to. But then it's easy enough to unlock them altogether.
    Easiest is to get encryption software and just encrypt the document. Or create a small encrypted disc image with Disk Utility and store the document in the disc image.

  • Converting PDF to Word 2003 in Acrobat 9 locks up Word

    I have a user who tries to convert a PDF to Word and it locks up Word every time, and her boss cannot open the document either. I can convert the same document on my computer with Acrobat 8 and Word 2007 and it works just fine. Is there a fix for this? Thanks.

    Something to try -
    Export the PDF to RTF.
    Open the RTF file with Word Pad.
    Save As (perhaps to a new filename -- 'something_bis.rtf')
    Open this file with MS Word.
    Not particularly surprising that the PDF you posted behaves poorly when 'worked' with Acrobat.
    It is an output of Ghostscript.
    Compounding the awkwardness of export is the fact that the PDF is not a Tagged PDF.
    A significant raison d'etre for Tagged PDF is to support export of PDF content to a word processor application.
    Be well...

  • New Keyboard Shortcuts in Word 2010 NOT SAVING

    I am unable to save new keyboard shortcuts to Word 2010.  The ones that come with the program work like CTRL B for bold, etc., but when I try to create new ones, they'll work while I'm in Word, but when I try to close it for the day, it tells me that
    there is a copy already open and it doesn't allow me to save to the Normal template.  When I try to save to a different template, the keyboard shortcuts I created do not work.  There has GOT to be a patch or workaround for this.  I am working
    on a small network, fyi.  Thanks so much.

    Hi,
    I have noticed that you have replied in a similar thread. Do you have the third party programs which mentioned there?
    And then based on my test, please try the following steps:
    Exit Word 2010> Rename the Normal.dot (Path: C:\Users\uesrname\AppData\Roaming\Microsoft\Templates) >Restart Word. 
    Create the new keyboard shortcuts ,assign to the command and choose Normal to save.
    If it still not works, please give me the whole error message during your saving.
    Regards,
    George Zhao
    TechNet Community Support

  • HT1937 Please help to check my Iphone is Lock or Word version?

    Please help to check my Iphone is Lock or Word version?

    Where did you purchase this iPhone (store name and country)?
    What does the receipt say?
    What does it say on the outside of the box?
    Did the iPhone come with a SIM already installed? If yes, what does it say on the SIM?
    What does it say when you look at Settings=>General=>Carrier?

  • 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

  • What keystrokes to move to end of document on an Mac Book Pro keyboard using Microsoft word?

    What keystrokes do I use to move to the end of document on an Mac Book Pro keyboard using Microsoft word?
    I've tried fn+option+ right arrow etc but doesn't do it.
    Cheers,
    Much appreciated.
    Schbang

    http://office.microsoft.com/en-us/mac-word-help/learning-roadmap-for-word-for-ma c-2011-HA103528093.aspx
    http://www.microsoft.com/mac/get-started

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

  • Converted .doc file locks up Word after conversion PRO 9.0

    I loaded a PDF and it converted to worg ok (by it's standards) and when I open it with WORD 2003 the first couple oages are fine but when I scroll down to the 4th page it locks up WORD and I have to end it. I have attached the PDF file to see if you could find any mysterious things that may cause this to happen.
    Chuck

    Hi,
          This is ronald. I want to convert .docx file to .doc. I tried to download the software but its not accessing in my system using windowsXP. Can anybody tell me how can I convert those files.
    redundancy compromise agreement

Maybe you are looking for