Skip to main content
Filter by
Sorted by
Tagged with
3 votes
2 answers
90 views

I am trying to get an element, and element's fontSize property and update the size with keypresses. I press the up'ArrowUp' and down 'ArrowDown' but nothing happens, the fontSize property does not ...
Buzzanags's user avatar
0 votes
1 answer
133 views

I am trying to use mat-autocomplete with large data. For the large data aspect im using a cdk-virtual-scroll-viewport with mat-autocomplete. Everything works except the Arrow-Key Navigation. <mat-...
Fabian's user avatar
  • 3
1 vote
0 answers
21 views

_getPluginListItemsDefinitons() { const editor = this.editor; const locale = editor.locale; this._dropdown = createDropdown(locale); this._commandItems = []; ...
Rubasri 's user avatar
2 votes
1 answer
157 views

I am writing a text editor in the C programming language, and I am stuck on how to allow the user to move around in the console window using the arrow keys. Here is my code: // EDIT LOOP void ...
ShizamDaGeek's user avatar
-10 votes
1 answer
755 views

In Microsoft Edge, holding the arrow down key on any web page scrolls the page down at an incredibly fast speed. Although Edge is Chromium-based, Google Chrome is not affected by this. Here is an ...
Danny Beckett's user avatar
0 votes
0 answers
69 views

The following keybindings are working fine on Windows, but don't execute the bound code on Mac. Are the keybindings different between Windows, Mac and Linux? self._kw.keyboard_win.bind("&...
Ed S's user avatar
  • 93
0 votes
1 answer
47 views

# After writing the function I am stuck on how to call the function. > window.addEventListener("keydown",function(e){ if ((e.keycode==37)||(e.keycode==39)){ myFunction(e.key); > ...
TiredEGG's user avatar
0 votes
1 answer
158 views

On a webpage, certain keyboard keys will control the scrolling of the webpage such like spacebar, arrowup, arrowdown. I intend to prevent the user from scrolling with these keys when an overlay ...
Eager to Learn's user avatar
1 vote
1 answer
298 views

I have a combo box that shows a list of options as you type in it, however when I try to navigate through the list using the keyboard arrow keys, it selects the first option and removes the other ...
HAMID ALGHURABI's user avatar
1 vote
1 answer
64 views

i have a filter dropdown that has a search button, button activates if there is no item on the list however the dropdown has multiple items in a line so what i want is to be able to navigate between ...
prixr's user avatar
  • 11
0 votes
0 answers
44 views

I'm currently working on a web application that has a menu system with submenus. I'm trying to implement arrow key functionality where the right arrow key should open a submenu, and the active class ...
Krish Patel's user avatar
0 votes
1 answer
2k views

I need to remove the arrow of the select tag, so I follow an example on Tailwind CSS: https://v1.tailwindcss.com/docs/appearance I checked the link to tailwind.min.css already, but it still not work. ...
Peter Phan's user avatar
-2 votes
1 answer
50 views

I want to make a pong game using HTML, CSS and javascript. I started with making a player and I got it to move using the arrow keys but it can go outside the screen which creates the sidebar. I want ...
kika's user avatar
  • 1
0 votes
0 answers
88 views

i can't understand how can i read the down arrow input in assembly. I need this input to pass to the next string. i checked the register ebx and ecx and inside of them there are different values. i ...
Not_Smart's user avatar
0 votes
1 answer
135 views

how to disable left and right arrow keys of Photoswipe ? I tried the following keyboard: false, and this code block window.addEventListener("keydown", function(e) { if (["...
kein-404's user avatar
-1 votes
1 answer
2k views

I am new to Angular. I have one list with font-awesome symbols. and currently I can navigate through those symbols using the tab button on my keyboard. but I want to do the same symbol navigation ...
Explorer's user avatar
  • 431
0 votes
1 answer
1k views

I have a serach bar where users can filter a list of products and navigate through this list using arrows up and down.The filtering and navigation work ok, but there is a side effect of using the ...
Bernardo Benini Fantin's user avatar
0 votes
0 answers
31 views

I incorporated the arrowChecker script for navigating between a series of webpages. Each page include an image. It works well except that I found that with arrowChecker included, the image loads very ...
ron duggleby's user avatar
0 votes
0 answers
216 views

I am working with the JavaScript game project. It is a snake game. I am facing with a bug. Function for keyboard arrow keys are work well. But screen arrow keys for mobile device are not work well. I ...
Soe Say's user avatar
  • 27
0 votes
1 answer
266 views

I'm still learning about how to code for accessibility, and I'm hitting a wall on this wordpress website I'm working on that was developed by a previous developer. There's a page on our site that has ...
Mance Rah's user avatar
  • 143
1 vote
1 answer
2k views

hope i can get some ideas here I have a material table with a row of input fields i would like to use left and right arrow key to move between cells instead of tab at the moment i am able to use ...
bunnap's user avatar
  • 47
0 votes
1 answer
473 views

I’m trying to write an AppleScript to insert ["some text"] above ["found text"]. Here is what I wrote: tell application "BBEdit" activate find "====" ...
user13569721's user avatar
0 votes
1 answer
870 views

I am trying to use arrow keys to navigate a table. The below code works but the problem is that it will only navigate from the last place the arrow key was used. If I click on a cell somewhere else ...
Chris's user avatar
  • 1
2 votes
0 answers
214 views

I have built a table with 4 columns. 1 column is text and the other 3 are inputs that are set to readOnly. For this table I have written an arrowKeyCodeNavigation. The operation works so far. But if I ...
user avatar
0 votes
0 answers
85 views

I would think this is a pretty basic requirement, but I can't seem to find a single post about this. I have a simple html select element on my page, when the user presses arrow down, the selection ...
Yisroel M. Olewski's user avatar
2 votes
2 answers
756 views

My HTML has a container element with many sibling div elements, each of which contains a contenteditable p. These sibling div are "interrupted", however, by other div which do not contain an ...
Tim's user avatar
  • 8,988
1 vote
0 answers
192 views

I have a file samlapi.py. Running the file pops up a dialog with a list of menu items on the terminal to select from. I cannot traverse the menu items using keyboard arrow keys on a terminal running ...
krs's user avatar
  • 11
1 vote
0 answers
87 views

I'm creating a car game where it creates a 3D pseudo effect by moving the screen backwards and the car itself just stays still on the map, using the arrow keys. It only takes in one input at a time, ...
Hasnain's user avatar
  • 11
0 votes
0 answers
66 views

I am working on an app to do quality review of scanned books. I display two pages at a time and let the user use the arrow keys or on-screen buttons to move right or left. The arrow keys work fine ...
JerrMerr's user avatar
4 votes
0 answers
637 views

I'm trying to make a simple program to navigate through the frames of a video. Those frames are already extracted as PNG files. I'm using OpenCV 4.5.4.58 alongside Python 3.7.11. I already made a ...
Ballisto's user avatar
0 votes
1 answer
495 views

I'm learning front-end at the moment and i'm trying to do a project for college but i'm stuck right now. When I press left arrow key my car goes off the screen and when i press right arrow key for ...
Leonardo Rafael's user avatar
0 votes
1 answer
575 views

I want to make a snake game in Windows Forms and dont know how i can detect inputs from a Keyboard. I have read a few solutions and most of them look like that private void _calendar_PreviewKeyDown(...
Tobias Schober's user avatar
0 votes
1 answer
679 views

How to traverse through a HTML element through JS? How to keep track of the traversed element? How to pass an object via a function call whenever we hit the 'Enter' key?
Kundan Munda's user avatar
0 votes
1 answer
909 views

I am working on a React web app where I have a div of a 4x4 grid which has 16 blocks rendered in them. Where I have arrow click events for right, left, up, and down arrow. I need to add the mobile ...
PineCone's user avatar
  • 2,363
1 vote
1 answer
194 views

this piece of code in the window procedure isn't working: case WM_KEYDOWN: switch(wParam) { case VK_UP: MessageBox(NULL, L"key up", L"&...
Jack's user avatar
  • 16.7k
0 votes
2 answers
1k views

I am new to selenium. I am trying to automate Naukri homepage. However, in the field location, sendKeys(Keys.ARROW_DOWN) is not working. Code is working fine till a.sendKeys("ch"). I am ...
Iqbal Kaur's user avatar
-1 votes
1 answer
229 views

I am building a table using dataTables.net and dynamically created data (using dataTables.net is probably not relevant). A few of my table cells are inputs. How do I navigate through these inputs with ...
laiello's user avatar
-1 votes
2 answers
83 views

I am trying to move a drawing slowly across the screen as I move another turtle with the arrow keys. The problem is that my code only makes the drawing move across the screen, not allowing me to move ...
Matt's user avatar
  • 144
0 votes
1 answer
86 views

When I use vscode or notepad, I want to use the key arrow up and down the button to jump to the up line or the next line, but when I press the two buttons cursor will jump to the article at the ...
Gin's user avatar
  • 727
0 votes
1 answer
1k views

Let's say you play a game on the computer, you move your character with arrow keys or WASD, if, let's say, you press and hold the up arrow key/W and left arrow key/A together, if the game allows it, ...
platinoob_'s user avatar
2 votes
1 answer
2k views

I'm creating an unordered list of buttons and would like to make it accessible. (Note: I found this SO post, but it doesn't answer my question.) My code (simplified, in React) looks like this: import ...
J. Hesters's user avatar
1 vote
1 answer
549 views

I have the arrow keys of the keyboard broken so I though to use the combination Ctrl + "asdw" instead. As an example, if we want to change the down arrow key, my question is: how can I remap ...
Ignasi Piqué Muntané's user avatar
0 votes
1 answer
307 views

I'm trying to get my NavigationView to fill the whole window. The List should stretch from the top to bottom edge of its window. But while the List looks correct at first with .fullSizeContentView ...
Enie's user avatar
  • 709
-1 votes
1 answer
617 views

Can we add virtual keys to a snake game website, like that website we can only play on the laptop because the phone doesn't have arrow up, arrow down, etc keys. So I am asking can we add virtual keys ...
PrashoonB's user avatar
1 vote
1 answer
2k views

I want to capture arrow keys in python linux: import getch as gh ch = '' while ch != 'q': print(ch) ch = gh.getch() k = ord(ch) print(k) # my question is: ...
Ahmad's user avatar
  • 9,836
2 votes
2 answers
1k views

I am making a sodoku solver program in Java with the JavaFX library. The program incorporates an interactive sodoku board consisting of a series of TextFields in a GridPane. The board looks like this: ...
qwerty's user avatar
  • 830
0 votes
1 answer
275 views

I'm trying to make a .io game with HTML5 canvas and node.js but I'm stumped on how to make the player move with arrow keys. I have been trying to use this tutorial to make the movement system and I've ...
Saint's user avatar
  • 59
0 votes
1 answer
397 views

I have some JRadioButtons in my Java Swing app. After I select one button, clicking on arrow keys will navigate thru all the buttons, but I need to use the arrow keys for other purposes, how to ...
Frank's user avatar
  • 31.2k
1 vote
1 answer
120 views

I'm making a player movement system with WASD keys for my multiplayer .io game in HTML5 canvas and when I added the movement system and then changed the x, y,); parameters from constant numbers like ...
Saint's user avatar
  • 59
1 vote
1 answer
3k views

Relatively new to Matplotlib. I plotted a cobweb diagram and is now hoping to change the r values via arrow keys as the program is running. Tried to use "import keyboard" along with a "...
HtreeM's user avatar
  • 33

1
2 3 4 5
8