Forum unknown
· Programming
#DoIO
5 messages in this thread
Or you can try VANILLAKEYS if you want the ascii codes translated.
RAWKEY didn't work. when I initialized it at OpenWindow time. Even
calling ModIDCMP didn't cure it. Am I doing something obviously wrong (like
not creating a message port)? This is driving me crazy, and holding up the
completion of a database program.
You have to set the RAWKEY bit in the IDCMP flag of the NewWindow structure
Once you do that, intuition will send you a message of RAWKEY Class. When you
have recieved that class of message, the Code field contains the raw keycode
of the key pressed. You still must translate the Keycode to ASCII. Hope that
helps you out.
You have to set the RAWKEY bit in the IDCMP flag of the NewWindow structure
Once you do that, intuition will send you a message of RAWKEY Class. When you
have recieved that class of message, the Code field contains the raw keycode
of the key pressed. You still must translate the Keycode to ASCII. Hope that
helps you out.
RAWKEY didn't work. when I initialized it at OpenWindow time. Even
calling ModIDCMP didn't cure it. Am I doing something obviously wrong (like
not creating a message port)? This is driving me crazy, and holding up the
completion of a database program.