Number pad/arrow keys

I was trying out the arrow keys in the built in laptop keyboard on a program and found that the numlk does not light up but it does on my desktop. Is there a way to use the numlk in the application i am using?

Hello sharon:
Welcome to Apple discussions.
Run, don't walk to the phone. Call Applecare and indicate you have a warranty problem. The KB is (or will be shortly) out of warranty. It may take you some time, but it may save you some money in the long run.
Incidentally, it appears to me that your KB is, indeed, broken.
Barry

Similar Messages

  • Number Pad Keyboard Keys wrongly mapped

    Hi Folks,
    Hope someone out there can help.  I am using a Mac Full Keyboard, ie Number Pad included, and recently the * and / Keys on the Number have started producing ' (Single Quote) and ; (Semi-Colan) instead.
    Is my keyboard knackered, or have I accidently remapped my keys?
    Fingers crossed someone can help,
    Treders

    If I ddn't know better, & I don't, I'd hahly suspect any KB by Apple.
    But then they've really messed up the OS, might try some workarounds...
    http://www.shadowlab.org/Software/spark.php
    http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=ukelele
    http://doublecommand.sourceforge.net/

  • Differentiate between shortcut keys Alpha (keyboard) Enter and Number Pad (10 key) Enter

    I need to be able to differentiate between the Keyboard enter and the 10 key enter (see image below) using a shortcut key in Captivate and/or Flash. These keys are used for two different reasons in the application that I am creating a simulation for.  Using ENTER allows the learner to use either key to continue with the simulation. I would like to force use of each of these keys differently.

    Hi Rastapote, and welcome to the HP Support Forums!
    I understand that you are having a problem with the numeric keypad on your HP Compaq 6830s Notebook PC. This is a business Notebook and you would get the best answer to your question on the HP Enterprise Business Community forum as they deal with the Business products.
    I hope this information helps.
    Have a great day!
    I worked on behalf of HP.

  • Key Bindings using the arrow keys

    Following is some code that allows you to move a component around the screen using the arrow keys. I've noticed a problem and I'm just wondering if its Java or my keyboard.
    Lets start with an example that works:
    Press the down and right keys. Then press either the up or left key. The image moves proving that it supports 3 keys.
    Now for the problem:
    Press the up and left keys. Then press either the down or right key. Three things to notice:
    a) the direction doesn't change when the third key is pressed
    b) no output is displayed, so the ActionListener is not being invoked
    c) after a short time, the program starts beeping
    Now try rerunning the code after removing the comments that assign the key bindings to the "a, s, d, f" keys. Redo the above test and it works even if all four keys are pressed.
    I don't remember this problem when I wrote the code a while ago, but I did recently get a cheap new keyboard so I'm just wondering if the problem is my keyboard or whether its a quirk with Java.
    You can download Duke from here:
    http://java.sun.com/docs/books/tutorial/uiswing/examples/components/LayeredPaneDemoProject/src/components/images/dukeWaveRed.gif
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class KeyboardNavigationProblem implements ActionListener
         private JComponent component;
         private int deltaX;
         private int deltaY;
         private Timer timer;
         private int keysPressed;
         private InputMap inputMap;
         public KeyboardNavigationProblem(JComponent component, int delay)
              this.component = component;
              this.deltaX = deltaX;
              this.deltaY = deltaY;
              timer = new Timer(delay, this);
              timer.setInitialDelay( 0 );
              inputMap = component.getInputMap(JComponent.WHEN_IN_FOCUSED_WINDOW);
         public void addAction(int keyCode, String description, int deltaX, int deltaY)
              new NavigationAction(keyCode, description, deltaX, deltaY);
         public void updateDeltaX(int delta)
              deltaX += delta;
         public void updateDeltaY(int delta)
              deltaY += delta;
         public void actionPerformed(ActionEvent e)
              int componentWidth = component.getSize().width;
              int componentHeight = component.getSize().height;
              Dimension parentSize = component.getParent().getSize();
              int parentWidth  = parentSize.width;
              int parentHeight = parentSize.height;
              //  Determine next X position
              int nextX = Math.max(component.getLocation().x + deltaX, 0);
              if ( nextX + componentWidth > parentWidth)
                   nextX = parentWidth - componentWidth;
              //  Determine next Y position
              int nextY = Math.max(component.getLocation().y + deltaY, 0);
              if ( nextY + componentHeight > parentHeight)
                   nextY = parentHeight - componentHeight;
              //  Move the component
              component.setLocation(nextX, nextY);
         class NavigationAction extends AbstractAction implements ActionListener
              private int deltaX;
              private int deltaY;
              private KeyStroke pressedKeyStroke;
              private boolean listeningForKeyPressed;
              public NavigationAction(int keyCode, String description, int deltaX, int deltaY)
                   super(description);
                   this.deltaX = deltaX;
                   this.deltaY = deltaY;
                   pressedKeyStroke = KeyStroke.getKeyStroke(keyCode, 0, false);
                   KeyStroke releasedKeyStroke = KeyStroke.getKeyStroke(keyCode, 0, true);
                   inputMap.put(pressedKeyStroke, getValue(Action.NAME));
                   inputMap.put(releasedKeyStroke, getValue(Action.NAME));
                   component.getActionMap().put(getValue(Action.NAME), this);
                   listeningForKeyPressed = true;
              public void actionPerformed(ActionEvent e)
                   if (listeningForKeyPressed)
                        updateDeltaX( deltaX );
                        updateDeltaY( deltaY );
                        inputMap.remove(pressedKeyStroke);
                        listeningForKeyPressed = false;
                           if (keysPressed == 0)
                                timer.start();
                     keysPressed++;
                   else // listening for key released
                        updateDeltaX( -deltaX );
                        updateDeltaY( -deltaY );
                        inputMap.put(pressedKeyStroke, getValue(Action.NAME));
                        listeningForKeyPressed = true;
                        keysPressed--;
                           if (keysPressed == 0)
                                timer.stop();
                   System.out.println(KeyboardNavigationProblem.this.deltaX + " : "
                   + KeyboardNavigationProblem.this.deltaY);
         public static void main(String[] args)
              JPanel contentPane = new JPanel();
              contentPane.setLayout( null );
              JLabel duke = new JLabel( new ImageIcon("dukewavered.gif") );
              duke.setSize( duke.getPreferredSize() );
              duke.setLocation(100, 100);
              contentPane.add( duke );
              KeyboardNavigationProblem navigation = new KeyboardNavigationProblem(duke, 100);
              navigation.addAction(KeyEvent.VK_LEFT, "zLeft", -5, 0);
              navigation.addAction(KeyEvent.VK_RIGHT, "zRight", 5, 0);
              navigation.addAction(KeyEvent.VK_UP, "zUp", 0, -5);
              navigation.addAction(KeyEvent.VK_DOWN, "zDown", 0, 5);
    //          navigation.addAction(KeyEvent.VK_A, "zLeft", -5, 0);
    //          navigation.addAction(KeyEvent.VK_S, "zRight", 5, 0);
    //          navigation.addAction(KeyEvent.VK_D, "zUp", 0, -5);
    //          navigation.addAction(KeyEvent.VK_F, "zDown", 0, 5);
              JFrame frame = new JFrame();
              frame.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
              frame.setContentPane( contentPane);
              frame.setSize(800, 600);
              frame.setLocationRelativeTo( null );
              frame.setVisible(true);
    }

    if you hold down left and right (so it doesn't move), down works, but not up.
    hold up/down, right works but not left.Yes, the problem only seems to be when the up and left in combination with the right or down key is pressed.
    num lock off - use the number pad arrow keys and all works OK Thats interesting, I didn't notice that. Although it just confuses the issue as to what the problem is.
    So it appears to me that:
    a) left + up + down, and
    b) left + up + right
    are special key combinations that are intercepted by either the OS or the JVM. Do these key combinations ring a bell to anybody?
    I'm use JDK1.4.2 on XP. I wonder if other OS will have the same problem?
    Again, this isn't a real, problem, just more of a curiosity. Thanks,

  • Wired keyboard-number pad&right arrow keys not working-serial # help!

    Hello to whomever reads/replies -
    I have a wired keyboard for my iMac(it's not the aluminum imac, but the version before it with the keyboard and mouse that came with it). I got this keyboard June 2007 after the original keyboard sent to me had problems with it with some keys not working properly. And now about a week ago my right arrow key and the zero, decimal point, one, two, three and enter button on the keypad stopped working out of the blue. One night they worked and the next they didn't with nothing being done different, nor was the keyboard stored differently.
    I've cleaned the keyboard inside and out twice and tried pushing the little squishy thing under the keys when you pop them off and there's no response with those being pushed either so something's got to be wrong with the keyboard itself.
    Also, when I go online to look up the warrenty on this keyboard, #1 i can't find where it tells me where the serial number on the **** WIRED keyboard is, just gives me where i can find it on the WIRELESS keyboards. Ugh. So I looked under my keyboard and punched in the numbers and letters that i found on a little silver plate just below where the wire and USB ports are in the top of the keyboard and I get an 'invalid serial number' error message.
    So.. could anyone help me with these problems? I'd really rather not call tech support since it took me over two hours to explain to the man that I spoke with last year about my other keyboard and I just don't have the time! Thanks in advance!
    Sharon

    Hello sharon:
    Welcome to Apple discussions.
    Run, don't walk to the phone. Call Applecare and indicate you have a warranty problem. The KB is (or will be shortly) out of warranty. It may take you some time, but it may save you some money in the long run.
    Incidentally, it appears to me that your KB is, indeed, broken.
    Barry

  • Number pad and a few keys jamed. HP 6830s windows 7

    Dont know if right after or later on that i tried doing screen print with the FN key but number pad is jamed as the space bar and main Enter key. 1 = End, 2 =down, 3 =schrol down, 4= going left, 5 =the space bar, 6 =going right, 8=Enter... the rest of the key board ina not affected. If i press Num lock, about the same except that 5=5+ space as the space bar does, 8= 8+ "enter as main Enter key does. Tried to uninstall and reinstall driver of keyboard but no joy. ANy help around?

    Hi Rastapote, and welcome to the HP Support Forums!
    I understand that you are having a problem with the numeric keypad on your HP Compaq 6830s Notebook PC. This is a business Notebook and you would get the best answer to your question on the HP Enterprise Business Community forum as they deal with the Business products.
    I hope this information helps.
    Have a great day!
    I worked on behalf of HP.

  • HP G62-348CA number keys and arrow keys not working

    Good day Experts! Can someone help me fix my laptop? I got G62-348CA unit. only number 5 and 6 in my number keys are working and also arrow keys down and right are not functioning. at first it was built with windows 7 home premium 64bit but then i have to reformat my laptop with windows 7 ultimate but i dont have available 64bit so i install 32bit of the OS. before i install the OS, number keys and arrow keys are working fine but after I reformat my laptop with ultimate 32bit, the said keys are not working. please guys help me. im having trouble with my unit and i dont know what to do. its pretty bad i dont have any idea. all the best with you guys and i'm hoping for your fast and kind response. thank you!

    Because the operating system does not affect the keyboard in that way . .. If the operating system has issues it would switch keys or assign wrong characters.
    I have replaced over 200 keyboards because of such issues

  • Apple Keyboard with number pad the V key will not work

    Apple Keyboard with number pad the V key will not work.  Everyother key works but not the V.  I have a MacBook Pro.  Any suggestions?

    Call AppleCare and get it replace if it's under warranty; otherwise, get a new one. They're only $49 USD.

  • Extending F-Keys - is there a F-Key number pad?

    I have the wireless apple keyboard which only has twelve f-keys. Does anyone know of a device like a number pad that would add some additional F-keys which I could assign actions to?
    Please don't suggest the following - I am aware of these options and they don't resolve a very specific issue/workflow I am trying to enable.
    1) just use the fully apple keyboard that have extended F keys
    2) use modifier keys for your F keys for addition functions
    I have tons of quick keys that I use across the OS, and across apps, and I am trying to find single key presses (without modifiers) that I can press to increase functionality and apple's multipurpose Fkey option makes my goals difficult?
    Any suggestions? I love the wireless keyboard, but I just want to be able to add additional keys.
    Thanks!
    -i

    Check out the Belkin Nostromo N52... It's designed as a gaming input device, but it should suit your needs nicely. It has 14 keys (all programmable, even macros) as well as a scroll wheel, 8-way D-pad, and several other buttons.
    I'm 99% sure they have OSX drivers for it...
    Saitek makes something similar as well, but I don't know about OSX compatibility...

  • Number Pad Keys Aren't Recognized

    I am unable to get the number pad keys (on the right side of the keyboard) to work on either of my Apple Keyboards (wireless and wired aluminum). The number pad keys function when I move the keyboards over to my G5, so I think the keyboards themselves are not the problem. Neither keyboard has a number lock key.
    Any ideas as to why these number pad keys on the right side of my keyboards don't work?
    Thanks

    Malcolm: You were correct. I went into Universal Access and turned off Mouse Keys. I can now you the number pad. Thanks so much.

  • Ibm t30 alternate number pad - keys U I O J K L

    How can you disable this alternate number pad on the T30?  It's stuck on - a co-worker called me on the phone in another city, and has most regular alpha keys working, but the certain keys that make up the horizontal/vertical number pad on the keyboard is completely stuck on - how is this disabled/enabled?
    Tried numerous FN commands, and absolutely no luck - seems to be only a problem when logged in - but before logging in, using the keyboard works fine.
    -Jeff
    Solved!
    Go to Solution.

    Look at your keyboard carefully and find which key has the NumLk on it.  It will be Fn+thatkey to toggle NumLock off and on.
    English Community   Deutsche Community   Comunidad en Español   Русскоязычное Сообщество
    Jane
    2015 X1 Carbon, ThinkPad Slate, T410s, X301, X200 Tablet, T60p, HP TouchPad, iPad Air 2, iPhone 5S, IdeaTab A2107A, Yoga Tablet, Yoga 3 Pro
    I am not a Lenovo Employee.
    I AM one of those crazy ThinkPad zealots!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"!

  • Number pad on 10 key keyboard and Windows

    For some reason, my 10 key does not work on my keyboard on the Windows (XPSP3) partition. Anyone know of a button to use to turn on the number lock on it? It currently works as if the number lock is not on.
    Thanks
    PAX
    JD

    Hi,
    for activation of number keys you usually have to press the so-called 'clear'-key.
    It's the one directly above the '7'-key of the number pad.
    And you usually have to do that only once, as Windows 'remembers' that setting.
    In Windows it's called the 'NumLock'-key.
    Regards
    Stefan
    Message was edited by: Fortuny

  • I tried to install maverick and now my keyboard keys F10,F11, 7,8,9 on the number pad don't work on my iMac. How do I resolve this?

    I tried to install maverick and now my keyboard keys F10,F11, 7,8,9 on the number pad don't work on my iMac. How do I resolve this?

    It sounds like you may have multiple problems, but none of them are likely to be caused by malware.
    First, the internet-related issues may be related to adware or a network compromise. I tend to lean more towards the latter, based on your description of the problem. See:
    http://www.adwaremedic.com/kb/baddns.php
    http://www.adwaremedic.com/kb/hackedrouter.php
    If investigation shows that this is not a network-specific issue, then it's probably adware. See my Adware Removal Guide for help finding and removing it. Note that you mention AdBlock as if it should have prevented this, but it's important to understand that ad blockers do not protect you against adware in any way. Neither would any kind of anti-virus software, which often doesn't detect adware.
    As for the other issues, it sounds like you've got some serious corruption. I would be inclined to say it sounds like a failing drive, except it sounds like you just got it replaced. How did you get all your files back after the new drive was installed?
    (Fair disclosure: I may receive compensation from links to my sites, TheSafeMac.com and AdwareMedic.com, in the form of buttons allowing for donations. Donations are not required to use my site or software.)

  • Remap number pad key?

    Hello from France.
    I use an external Apple wireless keyboard with a French layout and I want to remap one single key on the right-side number pad. Is this possible?

    Hi,
    for activation of number keys you usually have to press the so-called 'clear'-key.
    It's the one directly above the '7'-key of the number pad.
    And you usually have to do that only once, as Windows 'remembers' that setting.
    In Windows it's called the 'NumLock'-key.
    Regards
    Stefan
    Message was edited by: Fortuny

  • Why does my Right arrow key type the number "8" and the Up arrow key type the number "9"

    Whenever I hit the right or up arrow key on my macbook, it does shift either right or up but it also type either the number "8" for the right arrow key or the number "9" for the up key. How do I get this to stop? It's very annoying

    Hi benmurray37,
    Welcome to the Apple Support Communities!
    For this situation I would suggest a few different steps to isolate and resolve the issue. Please follow the steps listed in the Some keys don’t work as expected section of the following article.
    One or more keys on the keyboard do not respond
    http://support.apple.com/kb/ts1381
    I hope this helps,   
    -Joe

Maybe you are looking for

  • IOS 7 is taking too much time to download

    IOS 7 remains on estimating time remaining

  • My projects disappeared when I downloaded iLife 09

    After upgrading iLife 09, I opened iMovie and the project window is blank. Where did all my old projects go? How can I get them back?

  • Rfc XML Purchase Order via business connector

    Hi, I am new to business connector and currently I am faced with a task where I have to send the Purchase Order to vendor via rfc XML with business connector 4.7. The vendor should receive the order via ebp XML. Can any one specify me the exact steps

  • Problem applying patch 125547-02

    I am attempting to patch a Solaris Sparc 10 06/06 system to the latest patches using the smpatch command. One of the patches that needs to be applied in patch 125547-02. However I am unable to install this patch as it has a dependency on patch 122660

  • Error message when we do confirmation goods Receipt

    Hi, When we do a goods receipt with zero quantity in R/3 the system gives the error Message no. M7-061 "Document does not contain any items" I need to apply the same logic in SRM. I have made the code in BBP_ITEM_CHECK_BADI here i am checking the ite