Force Flash games to play in fullscreen mode

flash

I download Flash games from several sites and some of them can be played on fullscreen and some cannot be. How can I change the screen size of the game to accomodate my screen? Is there a way to force all Flash games to be played in fullscreen mode?

Best Answer

If you play in a browser, you culd use a bookmarklet or user script to full screen the game element. Try pasting something like this in your address bar:

javascript: addEventListener('click', function(ev) {var el = ev.target, rfs = el.requestFullScreen || el.webkitRequestFullScreen || el.mozRequestFullScreen; rfs.call(el);});

This should fullscreen a clicked element.
In some browsers (cough Chrome cough), you'll need to type the "javascript:" part yourself. Put it in a bookmark to circumvent that.