If this is the behavior of the browser you are tripping on, you can write JavaScript to prevent it. There is another related publication about capturing key events in JS and transferring them to flash. See my answer here and focus on the preventDefault() . You should just extract what you donβt need in the code and leave something like
$(document).ready(function() { $(document).keydown(function (event) { event.preventDefault(); }); }
Of course, you will need to import the jQuery library .
source share