Hello!
Maybe someone can give me a hand. I have a flash, and I include this code on
the first frame:
fscommand ("fullscreen", "true");
fscommand ("allowscale", "true");
with the idea that this will make my movie full screen. When I play my .exe
file, it works perfectly, but when I insert my movie on dreamweaver, in a html
page, and open it, it doesnt work. Seaeching for some help I found in a site
that I should add this code in my html page:
<param name="allowScriptAccess" value="always" />
<param name="movie" value="menu_ingles.swf" />
I did that also, but still my flash doestn adjust to the size of the screen,
what I?m I doing wrong?
MikeTheVike1 - 16 Jul 2008 18:52 GMT
That way doesn't work for web full screen, only projectors. You have to do
something like this...
fs_button.addEventListener(MouseEvent.CLICK, fs);
fs_button.buttonMode = true;
function fs(event:MouseEvent):void {
trace("full screen");
stage.displayState = StageDisplayState.FULL_SCREEN;
}