5 lines
181 B
Text
5 lines
181 B
Text
|
|
on keyDown k
|
||
|
|
-- do stuff, keycode is held in k
|
||
|
|
if k is not 46 then pass keyDown // will be trapped if "." is pressed, others will be passed on through the message path
|
||
|
|
end keyDown
|