Code: Select all
Function p_HandlerFunc(msg)
Switch(msg.action)
Case "OnKeyDown":
If msg.key = "RETURN" Then End
EndSwitch
EndFunction
InstallEventHandler({OnKeyDown = p_HandlerFunc})
Repeat
WaitEvent
ForeverI've tried with success UP, DOWN, RIGHT, LEFT, ESC, F1-F10, BACKSPACE, DEL
RETURN, TAB, SPACE does nothing
Any idea?