Questions tagged [arrow-keys]

The up, down, left, and right keys on a keyboard, also known as "cursor keys".

The arrow keys are the up, down, left and right keys on a keyboard, also known as "cursor keys". They are primarily used to move the cursor around on-screen text, and are also often used to move player characters in games.

They behave as normal keys for keyboard events, returning both a Unicode value and a code.

References

363 questions
0
votes
1 answer

Silverlight - tab navigation with arrow keys

How to cycle between controls with arrow keys. I want the same effect as I get with Tab key. Is it even possible?
Gapipro
  • 1,913
  • 2
  • 22
  • 34
0
votes
0 answers

LibGDX: Cannot press spacebar, up and left at same time

I was wondering if there was some sort of workaround for this. Basically the problem is that, when using LibGDX InputProcessor's keyDown/Up, it never allows me to have spacebar, up arrow key and left arrow key pressed at same time. I read online…
vedi0boy
  • 1,030
  • 4
  • 11
  • 32
0
votes
1 answer

Is it possible to disable the default Ctrl-Arrow scroll behaviors of a TreeView?

We have a TreeView which we want to manually process CTRL-Arrow key combinations on. However, the built-in behavior is to scroll the list without actually changing the selected item. Is thee any way to disable this functionality so even when the…
Mark A. Donohoe
  • 28,442
  • 25
  • 137
  • 286
0
votes
1 answer

How to restrict default behavior of arrow keys of remote keyboard in android

My application works with remote Bluetooth keyboard. I have defined some predefined custom implementation on arrow keys and enter key. I want to perform only those actions whenever user press arrow key or Enter Key in my application. But sometimes…
Uzair
  • 716
  • 9
  • 16
0
votes
1 answer

Applescript quicklook: arrow key down 1000 times

I'm a total beginner in apple script. I would like to open a folder directory that contains hundreds of photos and to view each photo 1 second with quick look and then go to the next (suppose to use down arrow / key code '124'). I don't have any…
0
votes
2 answers

jQuery: How to navigate from one td to a specific other td in a table

I am new to jQuery so I might approach this the wrong way but hope someone here can help me. I have a pretty large HTML table that is created dynamically. To help the user I would like to bind a navigation event to the arrow keys only for this…
keewee279
  • 1,656
  • 5
  • 28
  • 60
0
votes
3 answers

Simulate arrows key press in C# WPF

I want to simulate the LEFT and RIGHT Arrows key press when an IF condition gets true. Uptill now I have tried this so far, but it does not works. I am also controlling mouse using win32.dll import method. If I use the SendKeys.Send("LEFT");…
Faizan
  • 1,847
  • 8
  • 40
  • 63
0
votes
1 answer

How to make window scroll at a slower rate with arrow keys?

How can I make the window scroll at a slower rate (horizontally and vertically) when triggered with the arrow keys? I've looked at some parallax demos, but they don't really do what I need. They mostly focus on background images, whereas I want my…
0
votes
3 answers

How to detect arrow key-presses in JavaScript?

I am making a car racing game in JavaScript. The car is controlled by the arrow keys. I have made a lot of games in JavaScript before and it worked. The code I had used is: function detectKey(e) { var event = window.event ? window.event : e; …
Box Box Box Box
  • 5,094
  • 10
  • 49
  • 67
0
votes
1 answer

My Image Hops in a weird fashion when arrow keys are pressed (HTML + JS)

I am new to Html/Javascript and tried to move an image with arrow keys. It worked, however when the style.top of the image goes under a certain number (It seems 100px), it hops to style.top = 425px, which is supposed to only happen if style.top >=…
0
votes
1 answer

How can I complete an edit with the right arrow key in a Kendo grid cell?

When a Kendo grid cell is open for editing, what is the best way to close the cell (and move to the next cell) with the right arrow key?
0
votes
1 answer

jQuery 2.1.0 | List navigation with arrow keys

I am navigating within my app with the help of keyboard arrow keys. In my app, some dynamically set elements display vertically within a list. So far, the code below allows for horizontal navigation within each dynamically set
  • and vertical…
  • koolness
    • 166
    • 19
    0
    votes
    2 answers

    Reading arrow keys with C++

    I am writing an C++ Application and have to read if an arrow key is pressed or not. I only found some function that are only working on Windows.
    torhoehn
    • 95
    • 17
    0
    votes
    1 answer

    anythingslider vertical arrows in a secondary slider

    I would like to use a horizontal slider which include one vertical slider in one or several of it's slides (it will be dynamically built). I tested it whith the following piece of code but I would like to add vertical arrows to the vertical…
    Alain BUFERNE
    • 2,016
    • 3
    • 26
    • 37
    0
    votes
    1 answer

    Arrow keys priority (java rpg game)

    I'm working on a java game using LibGdx and I need your help. Explanation: There is one issue that I have with the arrow keys. Let me explain how my code works first. So in my update method, I check to see if keys are pressed. And if they are I…
    vedi0boy
    • 1,030
    • 4
    • 11
    • 32