Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
finding multikey scan codes
#1
now I am sure there is a reference somewhere...but I prefer to simply code a tiny program to find the multikey value for any key while im making a program. I shortened it down to 4 lines, I was wondering if there was either any shorter linewise or simpler to look at ways (still same line as this) to do the same thing. It has to exit when you press esc, print the value of the key you are pressing, and check all 127 values. If there aren't any other short ways, then just get creative and show us what you come up with Tongue.

Code:
screen 18
for bla = 0 to 128
    if multikey(bla) then print bla else bla = iif((bla>127) AND NOT(MULTIKEY(1)),0,bla)        
next
[Image: freebasic.png]
Reply
#2
There's a reference in docs/gfxlib.txt and constants in fbgfx.bi, both included with the standard distribution. Smile
Reply
#3
does that mean you can just use say "Multikey(SC_ESCAPE)" without including anything, since gfxlib is already included? (And I still like my program anyways =)
[Image: freebasic.png]
Reply
#4
It's just a regular include file; you have to #include "fbgfx.bi"
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)