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
-2
votes
1 answer

game maker studio:i broke the controls of my player

i cannot get my code to work, i followed a tutorial closely then proof read my work. it worked for the teacher but when i tried it my player was stuck, it didn't animate or move. i split the code up into different parts as that is what was in the…
Mortamar
  • 11
  • 2
-3
votes
2 answers

Using Arrow Keys to navigate in the Console

Im making a menu. I want to use arrow keys to select from my list. char move; do { move = (char)_getch(); if (move == 38) { // Move Indicator Up } else if (move == 40) { // Move Indicator Down …
Reinan Contawi
  • 225
  • 1
  • 6
  • 13
-4
votes
1 answer

increase the value in the textbox by using arrowkeys

I'm trying to increase the value in the textbox by using arrowkeys. I'm using wfp, c# if (ke.Key == Key.Up || ke.Key == Key.Down) ke.Handled = false;// need a method in here How can I increase the value in the textbox using arrow keys?
shila44
  • 7
  • 5
1 2 3
24
25