spinnerbox Posted May 5, 2016 Share Posted May 5, 2016 This question is of course for each specific browser forum, but I decided to ask anyway. I am using Phaser to develop educational game where you type letters which are analog to Sandhi/Devanagari/Sanscrit language letters. So you type ṁ or ī or ṇ, ñ, etc... and these letters are simplified by typing .m, -i, n. , ~n i.e I enter letters available on my keyboard but a special Sanscrit software analyzes these keystrokes and replaces them with appropriate Devanagari letters. Of course this software is not a necessity so I need to type keys from keyboard to achieve the letters above, i.e encode them. So far I have used addKeyCapture() function to disable Space, ".", "-", and "'". Well I planned to disable Shift as well but I works somehow. Also single quote doesn't took effect as I can still open "Quick Find" box in Firefox. gameObject.input.keyboard.addKeyCapture([32, 39, 45, 46]); So, is there a way to disable browser keyboard shortcuts trough JavaScript without installing or configuring additional plugins, addons or browser settings? Any ideas are welcome. Link to comment Share on other sites More sharing options...
spinnerbox Posted May 5, 2016 Author Share Posted May 5, 2016 Check this app: https://typing.io/ Link to comment Share on other sites More sharing options...
Recommended Posts