lucybenson
Technical User
Hi.. the problem I'm having is that I can't use the numeric keypad keys (to the right of the alphabet keys - not the numbers along the top) to trigger events.
For example. The number '4' key on the numeric keypad
has a key code of 86, so using this script:
on enterFrame me
--
on keyDown
case (the keyCode) of
86: beep
end case
end
--
end
should make the computer 'beep' when the number '4' on the keypad is pressed. But it doesnt.. Maybe this is an operating system specific thing? I am using mac OSX.
Thanks..
For example. The number '4' key on the numeric keypad
has a key code of 86, so using this script:
on enterFrame me
--
on keyDown
case (the keyCode) of
86: beep
end case
end
--
end
should make the computer 'beep' when the number '4' on the keypad is pressed. But it doesnt.. Maybe this is an operating system specific thing? I am using mac OSX.
Thanks..