OpherV Posted May 21, 2014 Share Posted May 21, 2014 How would I go about detecting an event for combination of key presses?For example: Shift+A, Ctrl+1 etc Link to comment Share on other sites More sharing options...
InsaneHero Posted May 21, 2014 Share Posted May 21, 2014 Class Key has properties shiftKey, ctrlKey and altKey. Detect 'a' then check shiftKey status, or '1' and ctrlKey.Edit: Do the detection inside the event handler for the unmodified key I mean... OpherV 1 Link to comment Share on other sites More sharing options...
Recommended Posts