home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DP Tool Club 25
/
CD_ASCQ_25_1095.iso
/
dos
/
tools
/
auror21a
/
keycodes.aml
< prev
next >
Wrap
Text File
|
1995-08-31
|
3KB
|
82 lines
/* ------------------------------------------------------------------ */
/* Macro: KEYCODES.AML */
/* Written by: nuText Systems */
/* */
/* Description: This macro displays various keycodes for each key */
/* pressed. */
/* */
/* Usage: Select this macro from the Macro List (on the Macro */
/* menu), or run it from the macro picklist <shift f12> */
/* ------------------------------------------------------------------ */
include bootpath "define.aml"
// keep this object resident
stayresident
inheritfrom "win"
// create main window with titles
createwindow
setframe ">b"
setcolor border_color color white on gray
setcolor border_flash_color color brightgreen on gray
setcolor text_color color brightgreen on gray
settitle "Display Keycodes - press <esc> twice to exit"
setwinctrl '≡'
sizewindow 6 5 72 20 "ad"
setborder "1i"
setshadow 2 1
writeline " Keycode Hexcode Scancode Ascii Hex Char Keyname"
// create scrollable subwindow
createwindow
sizewindow 0 1 0 0 "rw1" '' (getprevwin)
setparent (getprevwin)
setcolor text_color color black on gray
showcursor 80 90
inheritkeys OFF
lastcode = 0
function close
// call 'close' in object 'win'
pass
destroyobject
end
function "≡"
close
end
// don't process shift keys
key <shiftkey>
key <otherkey> (keycode)
asciicode = keycode & 0ffh // get ascii code from keycode
keyname = getkeyname keycode // get keyname from keycode
if lastcode then
writeline
end
writestr
(pad keycode 8) + // display keycode
(pad (base keycode 16) 9) + // display hexcode
(pad (keycode shr 8) 10) + // display scancode
(pad asciicode 7) + // display asciicode (if any)
(pad (base asciicode 16) 5) + // display asciicode (if any)
(pad (char asciicode) 6) + // display key char (if any)
" " + keyname // display keyname
lastcode = keycode // save last keycode
end
key <esc> (keycode)
if lastcode == keycode then
call close
else
call <otherkey> (keycode)
end
end