Is there a way to prevent keystrokes entered into my kha app from passing thru to the browser? I'm thinking particularly of arrow keys - as these can cause the app to be scrolled in the browser.
I tried adding
event.preventDefault();
at the end of kha.SystemImpl.keydown(), which worked, but prevented onKeyPress listeners from working.
Jake