The up, down, left, and right keys on a keyboard, also known as "cursor keys".
-5
votes
2answers
24 views
Using Right and Left Arrows to move pages [closed]
I have an idea for my website, and this page: http://www.goldtardis.com/doctor-who-series-seven-episode-ten---journey-to-the-center-of-the-tardis.html#.UZoBQLWiSSr
I want to be able to move to the ...
1
vote
1answer
52 views
how to use arrow keys as an input in a batch file
I was curious if there was a way to use the arrow keys on your keyboard to be able to receive input form them and use this information in a batch file? Thanks
BurnE
0
votes
1answer
33 views
Arrow keys don't work after programmatically setting the selected item in a listview
I have a listview with some things in it, and I have a sub that will refresh the listview by deleting everything in it and re-populating it.
However, when the user selects an item and the list ...
0
votes
1answer
48 views
need to handle JTable's rows using arrow keys from the keyboard
I have to shift the cells up/down depending upon the up/down arrow key pressed from the keyboard. I am adding a KeyListener (in fact KeyAdapter) on the JTable to achieve it using the keyPressed() ...
1
vote
0answers
85 views
How to use arrow keys to navigate through elements?(and highlight them)
im independently developing keyboard support to openerp(an open source erp solution) and so far the job is done. But there's one last part that i can't solve no matter, no how. The challenge is to ...
0
votes
1answer
26 views
Focus on ul list
I developed a custom search for my website and I show the results in a ul list withing a div. My problem is that I want those results to be focusable so I can browse them with the arrow keys. Is this ...
2
votes
1answer
160 views
How to move a Bug in GridWorld with arrow keys
I'm making a game for my computer Science class and I am trying to move a character object that extends Bug with the arrow keys. Should I put the code to move with the arrow keys in the Character ...
0
votes
1answer
28 views
Guide for writing arrowkey navigation on focusable elements?
I want to make links and input elements on my page have foucs that is navigable by arrowkeys. This is easy if I just think about up/down arrow keys, which are the same pattern as tab/shift+tab.
Just ...
1
vote
1answer
117 views
jQuery click trigger applied to arrow key not working
I was trying to apply arrow navigation to an image gallery using jQuery's trigger() method.
I got an example of that from another stackoverflow user and it seemed to be fine but when I added real ...
0
votes
1answer
24 views
How to detect combo arrows with jquery?
How to detect in jQuery comination of:
Arrow Up + Arrow Right
Arrow Up + Arrow Left
Arrow Down + Arrow Right
Arrow Down + Arrow Left
And not combination, just like
Arrow Up
...
0
votes
2answers
380 views
Arrow keys in Putty returning [[A^ [[D^ [[B^ instead of moving the cursor
Has anyone else ever had this error in PuTTy?
For example, pressing the Up Key now produces:
>>> ^[[A
Google doesn't let you search for special characters so I'm stumped at finding ...
0
votes
0answers
43 views
how to move to next input cell using Arrow keys which should work in IE8 using javascript
i have a simple crossword grid which uses input tag for entering the text.
i have a requirement like when the user clicks on Arrow keys it should move to next cells based on the Arrow key input.
i ...
0
votes
0answers
131 views
IE9 : Arrow Keys not working in text area field in popups
We are just testing our application on IE9 and I found an issue regarding the arrow keys behaviour in text area in popup window.
Two arrow keys are not working fine:
1) Left arrow key - When we ...
0
votes
3answers
111 views
Press on arrow keys without focusing on any control [closed]
I have a windows form that has bunch of controls. Whenever any key is clicked, like arrow keys, I want to raise an event. The problem isn't in code, the problem is that the controls have a tab index ...
0
votes
1answer
89 views
Send Arrow key input to child process in java
I want to run a child process in my java program to create automation.
I do not have the source code of the child process.
There are some functionality requires pressing the arrow keys in the child ...
1
vote
2answers
402 views
HBASE - select distinct query against the rowkey
I have a hbase table called "users", rowkey consists of three parts:
userid
messageid
timestamp
rowkey looks like: ${userid}_${messageid}_${timestamp}
Given I can hash the userid and make the ...
0
votes
0answers
213 views
WPF DataGrid edit mode cursor DOWN ARROW key press to work like Word with Wrapped text
If I wrap the text in a WPF DataGrid (Dot net 4.0).
See my answer to Enable TextWrap in dynamic DataGrid
I can then edit multiline text and move up down with the arrow keys.
I would like the grid to ...
1
vote
1answer
72 views
text navigation in jdb not working in bash
When I run jdb in bash the arrow keys produce weird garbage:
up: ^[[A
down: ^[[B
left: ^[[D
right: ^[[C
So I can't use the command history, or correct a spelling mistake, because I can't navigate ...
1
vote
1answer
94 views
Vim: Alt + arrow keys to move selection within a line
I use these keys to move a block of text (or entire line) to the left or the right:
Move block left:
nmap <C-A-Left> <<
vmap <C-A-Left> <gv
Move block right:
nmap ...
0
votes
2answers
265 views
Once disable arrow key scrolling in users browser, how to enable it
Disable arrow key scrolling in users browser
Zeta was given correct answer for how to disable the arrow keys.
I need to re-enable arrow key navigation once its disabled.
$('main ...
0
votes
0answers
144 views
send arrow keys using ganymed ssh java
I am using Ganymed ssh to connect to a remote machine and apart from sending commands I need to send the arrows keys (left and right keys). I can send commands but when I send the arrows keys nothing ...
1
vote
0answers
123 views
Arrow, tab, backspace keys are not working in Swing JTextField,JPasswordField components
I'am developing a Swing desktop application. In my login panel, there are JTextField components. I'am using Netbeans IDE 7.2.1 and Java 1.6. Update 31. When debugging and running project from Netbeans ...
6
votes
2answers
264 views
Is it possible to use arrow keys in OCaml interpreter?
Everytime I use these keys in the interpreter I keep getting symbols like this appearing:
[[D^[[C
I'm using Linux Mint 12 in ZSH, however I'm getting the same result in Ubuntu with bash.
Also, same ...
1
vote
1answer
308 views
Adding Arrow key functionality to autosuggest box
I cant figure out how to make the arrow keys work for my autosuggest box. I know I need to add something like this to my code:
var keynum = 0;
if(window.event) { keynum = e.keyCode; } // IE ...
0
votes
0answers
53 views
Adding arrow key functionality to autosuggest results
I want my autosuggest to have arrow key functionality so when I click down or up it will highlight the next result. Ive been having touble implementing this. I need specifics of where the code should ...
0
votes
0answers
66 views
How do i disable the arrow keys during text input on cobol? [closed]
what i want is for the user to not be able to use the arrow keys while typing on the screen section on cobol. Its main purpose is to not let the user have the ability to change what he has already ...
1
vote
1answer
192 views
Allowing arrow key navigation/enter functionality to autosuggest box
Im learning how to implement an autosuggest box and I just cant figure out how to make the results accessable with the arrow keys and enter button. I really have no idea how I would go about doing ...
0
votes
1answer
145 views
Moving a javascript character with the arrow keys
I'm writing an RPG game in javascript, and I want my main character to move when youi press the arrow keys or the wasd keys. I have code to generate him, but how should I define his postion so he ...
0
votes
1answer
115 views
How to send an arrow key use paramiko library in python?
I'm using python 2.7 and code ssh client with paramiko library, I use myhost.channel.send(chr(keycode)) to send every keycode to server. But It only works with 1 byte keycodes. I want to send other ...
1
vote
1answer
458 views
how to spoof arrow keys to my activity on android
I am trying to override the volume buttons to act as Up/Down arrow keys (i.e. they should move focus around on all of my activities focus-able Views.)
To do so I am overriding my activities ...
0
votes
2answers
571 views
JQuery, check for arrow key pressed swith statement
I've setup a keydown function and I want to do different things depending on whether the left, right, up or down arrow keys are pressed. That's working using a switch statement, but I'd also like to ...
0
votes
0answers
151 views
PreviewKeyDown Event not firing for C# TreeView Control
For the TreeView Control, I wire in a PreviewKeyDown event. However, when in the TreeView in Debug, using the arrows keys does not trigger the PreviewKeyDown event. What should I do?
2
votes
0answers
125 views
How to advance to the next cell when user presses down-arrow at the end of the text in a DataGridViewTextBoxEditingControl
I have a winforms application with a DataGridView that has some multi-line text cells. The default behavior of the DataGridViewTextBoxEditingControl seems strange. For some reason, if a cell is being ...
0
votes
1answer
335 views
Arrow Key Navigation in a WPF Form is Odd
I have a WPF form with which I would like to have arrow-key navigation. The current system is off, even though I have successfully specified the tab navigation order. I have two rows of three radio ...
1
vote
5answers
1k views
allow arrowkey movement in typeahead bootstrap
I'm really thrilled, because this my code works great for me (se below), however I cannot use the arrowkeys to move up/down in the list of results.
In the demo this feature is not available either, ...
0
votes
2answers
138 views
Arrows at the bottom of the toolbar in iOS apps
Was wondering if anyone knew how to implement arrows in the bottom toolbar as shown below? Would be extremely grateful if someone could give me insight into this. I have seen a lot of apps with such ...
1
vote
1answer
148 views
Rotate the DataGrid, how to Rotate the direction / arrow keys
We have rotated our DataGrid by "-90" successfully.
However, The arrow keys stayed as not rotated.
For example, When we press the UP-Arrow-key it goes left, instead UP, etc.
How can we rotate the ...
1
vote
2answers
224 views
Java - How to disable arrow keys for JSliders?
I want to use my arrows keys to move something on the screen but after I click on a JSlider to use it and I use the arrows keys, they are moving the JSlider instead of the object. I can’t find any ...
7
votes
2answers
151 views
Are some keyboards more loquacious than others?
The lead developer says that when he uses my app, his keyboard beeps when he moves between TextBoxes on the TableLayoutPanel via the directional arrow keys.
However, I hear no such aural activity.
...
4
votes
2answers
3k views
KeyDown recognizes the left and right directional arrow keys, but not up and down
With the code below, the Left and Right arrow keys function as expected, but the up and down arrows are not recognized (stepping through it, the first two conditions are met where appropriate, but the ...
0
votes
3answers
465 views
Why getch() is throwing an error in C
I am running a C program in Code :: Blocks in windows XP.
I am getting an error as
"drawing operation is attempeted when there was no current window"
What might cause this and how can I solve it?
...
6
votes
3answers
492 views
JS ArrowDown addEventListener for several elements in loop (demo)
Have following listener for keyboard ArrowDown event(it's key code is 40):
window.onload = function() {
var itemsContainer = document.getElementById('cities-drop');
...
0
votes
1answer
314 views
NCurses with Arrow Keys Plus Modifiers
I'm having trouble detecting arrow key presses with and without the SHIFT and CTRL modifiers pressed.
I have the following test code:
WINDOW * mainwin = initscr();
keypad(mainwin, TRUE);
int c = ...
6
votes
1answer
5k views
Disable arrow key scrolling in users browser
I'm making a game using canvas, and javascript.
When the page is longer than the screen (comments, etc.) pressing the down arrow scrolls the page down, and makes the game impossible to play.
What ...
2
votes
1answer
3k views
Navigate through list using arrow keys? (JavaScript/JQ)
I can't seem to find an answer to how to accomplish this, yet it's a feature I've seen several times. Essentially I'm echoing out a list and I would like to create the ability to highlight and select ...
1
vote
1answer
569 views
Mac OS arrow keys not working properly when enabling paredit in Emacs
I currently have this in my .emacs, which worked just fine in Linux:
;; paredit
;; this is from somewhere else on Stackoverflow ...
1
vote
1answer
214 views
iTerm2 get previous DIFFERENT command using up and down arrow keys
I found it irritating that if you run one command 5 times you have to press the arrow key 6 times to get the previous command. Is it some way to change this behavior?
iTerm2 Build 1.0.0.20111020
1
vote
0answers
58 views
IDE that allows you to select text in both directions with keyboard arrow keys
I'm looking for an IDE/code editor plugin that allows you to select text outwards from the cursor in both directions.
Eg: I have the following text in my IDE:
Mississippi
I place my cursor in the ...
1
vote
2answers
571 views
Checkboxes with bash script
I am trying to do a very simple bash script which emulates the behavior of checkboxes in appearance!
I want it to show some options and move the cursor to the next checkbox according to the key press ...
4
votes
1answer
959 views
How to use the esc key to close lightbox page overlay
I have a question about a lightbox see my jsFiddle.
Clicking on one of the images opens a bigger version of the painting as a page overlay.
How to use the ESC key to close this page overlay?
And how ...




