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 ?

  • Are you trying to say there's a performance issue or that the screen scrolls down? It's hard to understand your question – jackweirdy May 13 '12 at 17:06
  • Did you try this in another browser? – Jakob May 14 '12 at 09:35
  • all browser jakob yeah something like that , when you go to play some flash game and pressing spaces .. or while playing game so all flash screen going down . – santosamaru May 15 '12 at 18:43

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,011