|
|
|
#1 |
|
Messages: n/a
Hébergeur: |
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 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? |
|
|
|
#2 |
|
Messages: n/a
Hébergeur: |
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; } |
|
![]() |
| Outils de la discussion | |
|
|