Keyboard Locked by Kids

Mac Pro 4,1
After my daughter was messing around with the computer USB keyboard the keyboard stopped working, or rather the computer stopped recognizing the keyboard. Mouse works daisy chained through USB keyboard, keyboard works plugged into my Macbook Pro. My internet searches only come up with pseudo-ads for child-locking apps. I can't do my usual start-up tricks because I have no keyboard function (Pram etc)

because I have no keyboard function (Pram etc)
Anything they could have loaded cannot be active at Startup, when there is nothing in the machine except its ROM.
To activate "snag keys" at Startup, a wired keyboard must be plugged into a USB on the chassis, not on any display or other Hub, or it will be recognized too late to be seen.
In particular, holding Shift at Startup should continue to be seen as a request for Safe Mode, which checks the disk like Disk Utility (Repair Disk) then boots Mac OS X with only a few of the most essential Apple extensions, and no third-party extensions. You must enter your username and password to proceed, even if you normally auto-login. In Safe Mode the Finder is fully active, and you can use it to look for and remove unwanted add-ons.
Mac OS X is inherently a Multi-User system, and each member of your household should have their own userid and password. Even non-Readers can do this if you provide their picture or a favorite object as their login picture. Non-Readers passwords can be very simple, such as one letter, or can be blank if you insist.

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

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

  • My sons phone is locked up kids got ahold of it and locked it up 5272629 minutes...help

    my sons phone is locked up kids got ahold of it and locked up for 5272629 minutes

    See if this helps: http://support.apple.com/kb/HT1212

  • Software 5 update problem with keyboard lock key

    I just downloaded the software update v5 and when it was all done my keyboard lock key stopped working, has anybody else had this problem? any solutions other than a downgrade?

    I also have this problem after installing version 5.0.0.508. It appears that I no longer have an option for locking the keyboard. When I select Options/Screen/Keyboard and select Left Side Convienence Key Options it does not show up in the list of selectable options.

  • Password lock verses keyboard lock

    Help! I have a password set up to come on after 10 min. to lock my phone and now somehow when I press the lock key(a) my screen goes blank and it just locks the keyboard.  What needs changed so that I can lock my phone using the a key again?  I don't know how the keyboard lock even got turned on.  Thanks!
    Solved!
    Go to Solution.

    Try this KB.
    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

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

  • Keyboard Lock help

    It's a little thing... however... I recently got a Curve 8900, and I can only lock/unlock it by pressing the top button.  On my brother's Curve... he's able to lock/unlock by pressing A+Send.  For the life of me I can't figure out how to get mine to do the same thing.  I went to the "Tips and Tricks" section for my phone, and it actually says that the A+Send option is the standard way to lock/unlock.  Now I'm confused.... Please help.

    michelleloraine wrote:
     The keyboard lock's missing. Is it part of all the changes?
    Yes, it is.
    You can set a password on the device, and the lock icon will return.
    Or, you can use the K key to press to lock the device if your Call Log > Options > Dial for Homescreen >  set to no.
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Keyboard lock doesnt really lock

    Model: 8110
    OS: 4.3.0.93
    I carry my phone in my back pocket with the keypad locked.  I have noticed that with OS version 4.3 that now the keypad doesnt really lock anymore.  It does prevent a keypress from doing anything, but does not stop functions that are triggered by holding down a key.  For example, with the keyboard locked, I can turn off my phone by holding the RED button.  I can also change my profile to vibrate by holdign down the # key, while the keypad is "locked".  So whats happening is that I will discover that my phone has turned itself off while I was sitting in a chair or something because the keypad "lock" still allows these functions to work.
    Will RIM fix this in a future release? 

    Hi Gabri,
    Having looked at the model you have mentioned I can confirm that this function isn't available. The only additional keylock feature available is automatic locking.
    Best Regards
    Stuart
    There is something to be learned from a rainstorm

Maybe you are looking for