Comunidad de diseño web y desarrollo en internet online

Flash con fullScreen

Citar            
MensajeEscrito el 27 Abr 2010 11:36 am
Hola! estoy intentando hacer que una página sea a fullscreen al presionar un botón en flash, igual que cuando en el navegador presionas el F11.

Aquí tengo un ejemplo que he visto http://www.augeconsulting.com/diseno-web-cordoba.html

Y aquí la página de donde intento hacer lo mismo, pero no me funciona http://www.broculos.net/tutorials/how_to_make_a_flash_animation_truly_fullscreen/20080314/en

Existe algún modo más.... no sé, más que funcione? gracias.

Por vivalkali

40 de clabLevel



 

firefox
Citar            
MensajeEscrito el 27 Abr 2010 04:59 pm
A mi si me funciona bien, tienes el código así?

Código ActionScript :

package flashFullscreen_fla
{
    import flash.display.*;
    import flash.events.*;

    dynamic public class MainTimeline extends MovieClip
    {
        public var fullscreen_btn:SimpleButton;

        public function MainTimeline()
        {
            addFrameScript(0, frame1);
            return;
        }// end function

        public function toggleFullscreen(param1:MouseEvent)
        {
            if (stage.displayState == "fullScreen")
            {
                stage.displayState = "normal";
            }
            else
            {
                stage.displayState = "fullScreen";
            }// end else if
            return;
        }// end function

        function frame1()
        {
            this.fullscreen_btn.addEventListener(MouseEvent.MOUSE_UP, toggleFullscreen);
            stage.scaleMode = "exactFit";
            return;
        }// end function

    }
}

Por ashleymz

13 de clabLevel



 

msie8

 

Cristalab BabyBlue v4 + V4 © 2011 Cristalab
Powered by ClabEngines v4, HTML5, love and ponies.