TAB Key
Posted: Sun Oct 09, 2011 7:45 pm
Switch msg.action
debugprint(msg.key)
Case "OnKeyDown"
if msg.key = "TAB"
; doesn't work
elseif msg.key = "\t"
; doesn't work
elseif msg.key = "\009"
; doesn't work
endif
EndSwitch
How do I detect the TAB key being preseed if neither of the 3 options above work? Also I'd like to do SHIFT+TAB as well.
debugprint(msg.key)
Case "OnKeyDown"
if msg.key = "TAB"
; doesn't work
elseif msg.key = "\t"
; doesn't work
elseif msg.key = "\009"
; doesn't work
endif
EndSwitch
How do I detect the TAB key being preseed if neither of the 3 options above work? Also I'd like to do SHIFT+TAB as well.