11-29-2005, 07:29 AM
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
.

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