Arrow key lock?

I was wondering if there was a way to lock my arrow keys so my 3 year old doesn't have to hold down "option" when trying to move a character in one of his preschool games?
Thanks

What's probably wrong it that Portrait Orientation Lock is turned on. Slide up on the bottom on the screen and it will pull the control center up. You will see a lock with a circle around it in the top right. Click it, and that should fix the problem. Have a great day!
Ryan

Similar Messages

  • Excel arrow keys stop working (NOT SCROLL LOCK)

    Excel Office Pro Plus 2013 on windows 7 64 bit.
    This has happened since I loaded it.. older excel never has this issue on same host.
    When I am working in a spreadsheet and moving around with arrow keys.. they stop working randomly.
    It is NOT scroll lock... I can turn scroll lock on and off no effect.
    IF I change to another tab then back to the same tab .. the arrow keys work again!!!
    This happens in many spreadsheets... seems like the larger they are the worse it it.. VERY annoying and makes it unusable!!
    I have all the latest patches and have rebooted .. this has been going on since I loaded excel.. I was hoping a patch would fix it.. 
    but it keeps happening randomly... 
    ANY ideas?
    -Ken 

    Hi Ken,
    Thanks for posting in MSDN forum.
    Since the issue is more relate to the end-user, I'd like to move it to Excel IT pro forum.
    The reason why we recommend posting appropriately is you will get the most qualified pool of respondents, and other partners who read the forums regularly can either share their knowledge or learn from your interaction with us.
    Thanks for your understanding.
    Regards & Fei
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Bridge CC crashes while using arrow keys to switch images

    Adobe Photoshop CC 2014 Adobe Bridge 2014 on Mac is crashing every time I press an arrow key to move through images in bridge. I can click to manually select images with no problem, but using the up/down arrow keys to move to the next image up/down brings up the spinning beach ball and immediately locks the program up, requiring a force quit.
    Did the usual Mac permissions and fsck stuff to no avail. Ideas?
    Dan

    Thanks for moving my post to this correct forum. (I'm afraid I missed it when I originally posted.) A bit more information based on attempts to fix and on further attempts to use the program.
    After launching Bridge — before I select any specific image — it initially seems to work correctly. For example, I can use menu items and select and open folders. However...
    Once I drill down through folders to show raw files in the browser the problems begin. I can manually select an image by clicking on it, but the program the locks up if I do things such as attempt to navigate to another image using the up/down keyboard arrows or select anything from a menu that would perform an action on the image. (The problem happens with any image selected — not one particular image, and with images that worked fine until 48 hours ago.)
    ACR still works. I can double click an image and open the raw converter, and I can doubly click a smart object image in Photoshop do go back to the raw editor and it allows me to edit.
    I did the step of holding down command-option-shift at Bridge startup and selecting all three options to delete the cache and so forth. Still no joy.
    I did the usual Mac disk/file system repair stuff — repairing permissions and repairing disk — to no avail.
    I downloaded and reinstalled Bridge but the problem persists.
    Since I have a full backup of the drive on which Bridge is installed and since this backup drive is bootable, I double clicked the copy of Bridge on the backup drive... and it opened (slowly!) but worked correctly. (Not that this means much, but my second instance on my laptop continues to run fine.)
    I'm stuck, in a serious way, at this point. Thoughts?
    Thanks,
    Dan

  • Up and down arrow keys do not work

    Hi Guys...I need your help...
    Since my arrow keys (only up and down) do not work anymore on my iMac (Mac OS X 10.4.11)...No matter in which application...
    I have reset the PRAM since I thought that this may solve the problem without any success...does anyone have an idea how to resolve this problem?
    Have I maybe pressed any shortcut by mistake, which can lock these keys?? It is a pain to work without these 2 keys
    Thanks in advance for the help

    You may have switched on [http://kb.mozillazine.org/accessibility.browsewithcaret caret browsing].
    You can press press F7 (on Mac: fn + F7) to toggle caret browsing on/off.
    See http://kb.mozillazine.org/Scrolling_with_arrow_keys_no_longer_works
    * Tools > Options > Advanced : General: Accessibility: [ ] "Always use the cursor keys to navigate within pages"

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

  • Arrow keys spark random 5-10 minute keyboard glitch

    Some combination of the arrow keys will acuse the following errors will pop uptogether, then in about 5-10 minutes they vanish:
    -Everything I type will be in caps, even though caps lock is off,
    - both my USB and touchpad mouses will open new browser windows when I right-click on tabs,
    - my mouse will highlight and not stop highlighting,
    -I can't switch to other windows using the minimized tabs on the taskbar, they just bring up new windows (be it browser or other programs)
    -The mouse wheel will send me through my broswer history rather than scroll down or up.
    -Macros don't do as expected. Example: Shift+A takes me to firefox's addons rather than highlight everything on the page.
    - clicking on bookmarks in firefox will open the website in a new window rather than in the same tab.
    This error I get quite frequently:  Random semicolons followed by a random number will appear when I navigate a document with the arrow keys. This usually preceeds the following errors above.
    Its a new HP Probook 450 G1, and I've had plenty of programs scanning my system for viruses and malware. I've even reset windows and the problems persist. HP phone support did not help me. What's the deal?
    While writing this complain those same errors occured and navigated me away from this page, forcing me to write it again.
    I'll post this over and over until I get a reponse and a repair suggestion if I have to.

    SO I ended up getting in contact with a rep. who noticed that I had restarted windows and some things had not been activated. He got them updated and told me to get rid of AVG, and some other antimalware stuff because 'they weren't needed.'
    I only got them in the first place because I suspected this issue to be viral in nature. We decided to see if these changes altered my situation.
    Answer: Things have gotten worse. Semicolons appear much more commonly when I use the arrow keys in documents, and its the arrow keys that somehow lock the keyboard into a state where it thinks I'm holding down the shift key.
    These errors have nothing to do with me using the shift key, although repeatedly pressing it does reset the semi-perement shift key issue.
    And no, nothing has ever been spilled in/on the keyboard.

  • Arrow keys do not function for use as shortcuts

    I am able to perform shortcut functions except for when the shortcut involves using an arrow key. This behavior applies for native applications such as Finder and also third party software.

    I've had this problem myself and want to know an easier way. The keys will work if you hold down the "option" button. The problem is, this is too difficult for my 3 year old so I have to hold the key while he plays. If you find a way to lock the arrow keys, let me know.

  • Why after i update my left and right arrow keys stop working

    my left and right arrow keys stoped working after i updated to Mavericks now the dont work

    Hello ccombs2014,
    It sounds like 2 of your keys are not working after updating to Mavericks. I found this section of an article for you to help troubleshoot this issue named:
    One or more keys on the keyboard do not respond
    http://support.apple.com/kb/ts1381
    Some keys don't work as expected
    From the Apple menu, choose System Preferences.
    From the View menu, choose Speech.
    Click the Text to Speech tab.
    If "Speak selected text when the key is pressed" is enabled, the key or key combination set to speak text cannot be used for other purposes or used to type text--click Set Key and change it to a less-commonly used key combination (try to use modifier keys such as Shift, Command, Option, and Control). Or, disable the "Speak selected text when the key is pressed" option.
    Click the Universal Access pane in System Preferences, click the Keyboard tab.
    Make sure that Slow Keys is turned off. With Slow Keys on, you need to press a key for a longer period of time for it to be recognized.
    In the Universal Access pane, click the Mouse tab, and make sure Mouse Keys is turned off. With Mouse Keys enabled, you cannot use the Numeric Keypad to enter numbers--instead the keypad moves the pointer (cursor). (There is an option to enable Mouse Keys with five presses of the Option key; you may want to turn that option off to avoid accidentally enabling it.) If Mouse Keys is enabled and you are using a keyboard with no numeric keypad or Num Lock function, see Unable to type while Mouse Keys is enabled in Mac OS X.
    If the function keys on the top row of the keyboard are not working as expected, see Mac OS X: How to change the behavior of function keys.
    If the issue persists, use Keyboard Viewer to help isolate the issue:
    Click the Language & Text pane (Mac OS X v10.6) or International pane (Mac OS X v10.5.8 or earlier) in System Preferences.
    Click the Input Sources tab (or Input Menu tab in Mac OS X 10.5.8 or earlier).
    Click the Keyboard & Character Viewer "On" checkbox to select it (click the Keyboard Viewer "On" checkbox in Mac OS X 10.5.8 or earlier).
    From the Input (flag) menu, choose Show Keyboard Viewer.
    If the keyboard is connected and detected by Mac OS X, the keys you type will highlight in the Keyboard Viewer window. Open TextEdit (or any text application), and try to type something using the keys that were previously not responding to see if they highlight in Keyboard Viewer.
    Start from the Mac OS X Install Disc, choose Terminal from the Utilities menu and test the keys which were previously not working.  If the keys work while started from the Install disc, then the keyboard itself is working correctly.  Use Mac OS X: How to troubleshoot a software issue to isolate the software issue that may be causing the keys to not respond.
    Thank you for using Apple Support Communities.
    All the best,
    Sterling

  • My arrow keys and backspace no longer works in Sql Developer

    In the work sheet of Sql Developer it is not allowing me to use my arrow keys or backspace key, I can use these keys in the result section but not in the worksheet section. When I use the arrow key it scrolls the page but the cursor stays in the same spot. My scroll lock is not on as these functions work everywhere else. I have looked at short cut keys to see if I hit smoething but not finding anything. Any ideas?

    This is a known problem practically impossible to reproduce reliably.
    It was not reported on the latest releases of SQLDeveloper, so if you are on an old release you might consider switching to the latest one.
    The workaround for the problem in older version requires you to load preset values for the shortcut in
    Tools -> Preferences -> Accelerators -> Load PresetMind this will erase all your user defined shortcut keys

  • Screen Scrolls in games with arrow keys

    My kids play a lot of games online.  I can't lock the screen or whatever you want to call it.  If the game requires the arrow keys to move the character, it scrolls the screen until they can't see the game.  I have tried to click on the flash player game window but it still scrolls to the bottom of the page when you pich the arrow keys.  Any help?  Thanks!

    What is "it"? Did you create the game in Flash, or is this an online game?

  • Aluminium keyboard: arrow keys stuck in scroll mode while using excel?

    Posting this question for a colleague - he has a 24" iMac and is getting annoyed because the arrow keys no longer move from cell to cell while using Excel but rather they scroll the page. I took a quick look at his keyboard hoping to quickly solve the problem by finding some sort of lock key that was accidently pressed...but no joy. Anyone have thoughts on what's causing this sudden change in behaviour?
    tia,
    N

    I believe Shift-F14 is the keyboard combination to enable/disable scroll lock.

  • Spacebar,Enter,Delete,up and down Arrow keys are not working...

    Hello Everyone,
    My Hp Laptop has gone through a serious problem. Its Spacebar,Enter,Delete,up and down Arrow keys have stopped working . I am not sure how this problem caused . So i gone  through varios fixes, that were -
    1. Rstoring to an earliar date.
    2. Re-installling Keyboard driver
    3. Formating the System.
    The third fix Formating helped me and my keys started working . After some day I installed a software HP Network Manager but this after installing it again those keys stopped working and also the LED lights on Caps Lock and Wi- fi are not turning on but these two are functioning normally.
    the some of the information related my HP laptop are-
    Model: Pavilion G6
    ram 4 gb.
    OS: Windows 7 Home Basic
    can anyone please suggest me is it a hardware related problem or some software/driver  related ? And also what next i do to fix this serious issue...
    Thanks in Advance.
    This question was solved.
    View Solution.

    Hi Alien004,
    You and Advance23 have pretty much covered everything at this point and I believe that it is a hardware issue. I would advise that you contact HP regarding a possible repair. You can reach HP Total Care at 1-800-474-6836 in North America or start here outside of North America.
    Please click “Accept as Solution ” if you feel my post solved your issue.
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!
    Thank you,
    BHK6
    I work on behalf of HP

  • Arrow keys in Excel

    I'm using a MAC OS X computer.  In Excel I can't move the arrow keys through the document.  Did I lock the scroll button?

    You are most welcome
    Feel free to ask me anything that may come up, I would rate myself a 7/10 on a the tecnical side of mac. 9/10 on all other apple products

  • Arrow keys and layer position

    I am using the arrow keys to clean up tracking keyframes for a layer's position. Is there a way to lock the arrow keys to just one pixel movements?? Or even better, sub-pixel? Currently it moves the layer by 2 or 3 pixelss, thus lacking accuracy.

    The arrow keys move the layer one pixel at the current magnification (as stated here). To move a layer more precisely with the arrow keys, zoom in the Composition panel.

  • T60p - arrow keys "shift" screen side to side instead of moving cursor

    T60p running WinXP - arrow keys "shift" screen side to side instead of moving cursor ; happens in Notes and Excel. 
    How do I reset to "normal"?

    Try to turn off scroll lock (key named "ScrLk")
    -gan

Maybe you are looking for

  • Downloading videos

    Whenever I try to download a video file, it never works. I only get a piece of paper as the icon and the video will not open in itunes or quicktime.

  • Bought game for BB, but doesn't work

    I bought a game on Bplay, and have received 2 mails on my computer about the purchasing. So I had to forward the mail to my phone, and open the link that was in the mail, when I open it on my phone it says: "Not Available on DesktopNot Available on D

  • Policy Nat ASA 8.6(1)

    Going from a Pix 515E to an ASA 5515 and trying to mirror the configuration.  I believe I have most of it correct, but this one issue persists that I'm trying to get resolved.  There are a number of vpn tunnels that terminate on the Pix and on some o

  • Cl_Gos_manager

    hi folks, we're using cl_gos_manager - the generic object services - in a lot of customer transactions and some of them we want to port to a bsp-application to have 2 frontends, the sapgui and the intranet-frontend. does anybody know if cl_gos_manage

  • SOA suite 11g.XSLT

    Hi All, I am getting the input data as following name rollno sub Anu 1 Maths|science|social and the output should be as follows: name rollno sub Anu 1 Maths Anu 1 Science Anu 1 Social I need to implememt this by using oraext:create-nodeset-from-delim