If you are a subscriber to the Flash Media List then you will have seen Steve Wolkoff's announcement regarding the updated Flash Player 9 that's now available on Labs. The new Player not only adds support for Windows Vista, it also contains bug fixes as well as a new full screen feature.
Note we aren't just talking about full screen real estate within the browser here but actual full screen - without any chrome! Now that's a potential killer feature if you ask me.
There are however already some concerns that this feature could get abused - think Eyeblaster.
Owen has already blogged about this heavily and put up some sweet demos (before you leave a comment stating that it doesn't work: install the new Flash Player first).
I'm brewing my own little demo right now (which would be ready had Squeeze not crashed on me again) so watch this space.
Flash Player 9 Update
Emmy Huang's Blog
Owen's Blog
UPDATE
I've used an older clip to put together this little demo.

#1 by Brad Outlaw on 10/6/06 - 3:59 PM
#2 by petter on 10/8/06 - 2:02 PM
#3 by Rich Media Project on 10/8/06 - 5:35 PM
Of course you will get the awesome experience using Mozilla and the updated Flash Player 9 :
http://www.rich-media-project.com/fullscreen
#4 by Phil on 10/13/06 - 2:09 AM
#5 by andy on 10/31/06 - 6:35 PM
#6 by Stefan on 10/31/06 - 7:27 PM
#7 by jack keenan on 11/1/06 - 11:16 PM
#8 by Stefan on 11/2/06 - 8:49 AM
#9 by Rich Media Project on 11/2/06 - 9:11 AM
That was done in this sample :
http://www.rich-media-project.com/fullscreen
When the user goes to fullscreen the size of the player is changed and the other objects are hidden.
#10 by Stefan on 11/2/06 - 9:23 AM
#11 by jack keenan on 11/2/06 - 3:41 PM
Cheers
Jack
#12 by andy on 11/2/06 - 3:47 PM
#13 by Peter Giesbers on 11/30/06 - 10:14 AM
#14 by stoem on 11/30/06 - 1:48 PM
#15 by Dean on 1/9/07 - 9:37 AM
Here's an example:
http://www.carvedrock.net/
Turn javascript on, fullscreen doesn't work. Turn it off, and it does.
#16 by Dean on 1/9/07 - 10:11 AM
#17 by Ari on 2/6/07 - 4:11 AM
http://getit.foxtel.com/
#18 by Lawrence Garwood on 3/1/07 - 6:49 PM
And wondering what optimum sizes one should use with regards to flv film footage?
I'd like to keep the quality in full size mode.
#19 by Stefan on 3/1/07 - 8:42 PM
scaling a video up will always mean a loss of some quality. This means that you have to encode to quite a large size to retain most quality, say 800x600, maybe larger.
#20 by Lawrence Garwood on 3/1/07 - 9:05 PM
#21 by Dean on 3/1/07 - 9:16 PM
#22 by Stefan on 3/1/07 - 9:36 PM
Widescreens and any other monitor sizes can be taken care of by letterboxing the video on the fly, retaining the aspect ratio.
#23 by Dean on 3/1/07 - 9:52 PM
#24 by Stefan on 3/2/07 - 9:28 AM
#25 by Gary on 3/17/07 - 11:00 AM
I'm trying to accomplish a fullscreen video without having the whole stage blow too. This:
http://www.rich-media-project.com/fullscreen/
is the only example I've found.
The thread began to discuss it, but no responses yet. Anyone have it figured out?
Much apprecaited.
Best,
G
#26 by video on 3/30/07 - 3:31 PM
mmmcomcom@gmail.com
#27 by Larry on 4/20/07 - 10:29 PM
#28 by Michael on 5/21/07 - 9:37 PM
will you provide the source. also, will rich media provide the source?
Thank you,
mdawg
#29 by Stefan on 5/22/07 - 9:06 AM
#30 by jack on 5/29/07 - 12:29 PM
function gosmall()
{
_root.player._width=100;
_root.player._height=100;
}
function gobig()
{
_root.player._width=550;
_root.player._height=200;
}
// functions to enter and leave full screen mode
function goFullScreen()
{
Stage["displayState"] = "fullScreen";
}
function exitFullScreen()
{
Stage["displayState"] = "normal";
}
full.onRelease = function() {
if (Stage["displayState"] == "fullScreen") {
exitFullScreen();
gosmall();
trace ("Exit Full-Screen &");
}
if (Stage["displayState"] == "normal") {
goFullScreen();
gobig();
trace ("Go Full-Screen &");
}
}
Which will scale up the player to the size of the stage going up but not coming down. I believe the problem lies with the fact flash ignores all commands other than to return to normal when in fullscreen so it just ignores the down scaling or is it just my poor actionscript.
Any help would be appreciated.
Cheers
JK
#31 by Eric on 8/6/07 - 2:35 PM
#32 by Stefan on 8/6/07 - 2:43 PM
As for why you get inconsistent numbers I'm not sure...
#33 by Andy Vincent on 8/13/07 - 1:01 PM
http://filippasmedhagensund.com/
The fullscreen button is located bottom-right.
#34 by Wayne Johnson on 12/20/07 - 3:15 PM
#35 by silvara on 1/2/08 - 4:00 AM