1

Possible Duplicate:
How do I fix Flash issues?

just this time every time i hit space on the chat while playing flash game on web browsers like games from facebook or G+ , the whole screen game-play is going down , and i cant see the game sometimes it crash while chatting at poker room or other games rooms , anyone have clue how to fix it ?

1 Answers1

0

Try this bookmarklet on the page. Even if it stops the space bar in a text area, so you can't type a space (you can use Shift+Space), it should work in flash embeds too.

javascript:function dSpace(e){if((e.keyCode==32)&&(!e.shiftKey)){e.preventDefault();}}window.addEventListener('keydown',dSpace,true);void 0;

To remove that event listener, use:

javascript:window.removeEventListener('keydown',dSpace,true);void 0;
jasmines
  • 11,311