Welcome, Guest |
You have to register before you can post on our site.
|
Forum Statistics |
» Members: 37
» Latest member: Ludwig
» Forum threads: 241
» Forum posts: 1,730
Full Statistics
|
Online Users |
There are currently 142 online users. » 1 Member(s) | 140 Guest(s) Bing, Marcus
|
Latest Threads |
Nintendo Switch 2
Forum: Everything else
Last Post: Marcus
10 minutes ago
» Replies: 0
» Views: 1
|
Copliot's comment on NaaL...
Forum: Programming
Last Post: luwal
10 hours ago
» Replies: 0
» Views: 24
|
Final Destination
Forum: NaaLaa 7 Code
Last Post: johnno56
Today, 05:05 AM
» Replies: 9
» Views: 1,903
|
Hangman - Text
Forum: NaaLaa 7 Questions
Last Post: johnno56
Today, 04:59 AM
» Replies: 7
» Views: 529
|
Copliot's comment on NaaL...
Forum: Programming
Last Post: luwal
Yesterday, 01:43 PM
» Replies: 0
» Views: 70
|
Copliot commented on RCBa...
Forum: Programming
Last Post: johnno56
Yesterday, 06:15 AM
» Replies: 5
» Views: 592
|
Game programming in Rust
Forum: Programming
Last Post: luwal
06-03-2025, 07:09 AM
» Replies: 0
» Views: 326
|
Scratch VS Microsoft Make...
Forum: Programming
Last Post: luwal
06-03-2025, 01:25 AM
» Replies: 0
» Views: 320
|
Javascript Scripting Engi...
Forum: Programming
Last Post: luwal
06-03-2025, 01:18 AM
» Replies: 0
» Views: 308
|
Three popular Python game...
Forum: Everything else
Last Post: johnno56
06-02-2025, 09:36 PM
» Replies: 5
» Views: 1,515
|
|
|
Backspace Key |
Posted by: 1micha.elok - 04-23-2025, 03:22 AM - Forum: NaaLaa 7 Questions
- Replies (9)
|
 |
Hi
I am working with some keydown event codes, but I can't seem to find the key code for the backspace key.
Could you kindly advise me? Thank you!
Code: #win32
set window "KEYDOWN",200,100,false,4
set redraw off
while not keydown(KEY_ESCAPE)
set color 0,0,0
cls
set color 255,255,255
set caret 10,10
if keydown(KEY_INSERT) wln "Insert"
if keydown(KEY_DELETE) wln "Delete"
if keydown(KEY_HOME) wln "Home"
if keydown(KEY_END, true) wln "End"
if keydown(KEY_PAGE_UP) wln "Page Up"
if keydown(KEY_PAGE_DOWN) wln "Page Down"
'if keydown(KEY_BACKSPACE) wln "Backspace"
redraw
fwait 10
wend
|
|
|
|