Skip to main content
Participant
January 21, 2021
Answered

Start a "Projection Windows" or "Projection Mac" in full screen mode

  • January 21, 2021
  • 2 replies
  • 344 views

I'm creating an app in AS3 and publish setting in "Projection Windows" (.exe) or "Projection Mac" (app)
It's working fine but I need it to launch automaticly in Full Screen Mode.

 

How can I do that ?

 

Thank you

    This topic has been closed for replies.
    Correct answer JoãoCésar17023019

    Hi.

     

    Place these lines in the beginning of your code:

     

    import flash.display.StageDisplayState;
    
    stage.displayState = StageDisplayState.FULL_SCREEN_INTERACTIVE;

     

     

    I hope this helps.

     

    Regards,

    JC

    2 replies

    JoãoCésar17023019
    Community Expert
    Community Expert
    January 25, 2021

    Excellent!

     

    You're welcome!

    JoãoCésar17023019
    Community Expert
    JoãoCésar17023019Community ExpertCorrect answer
    Community Expert
    January 22, 2021

    Hi.

     

    Place these lines in the beginning of your code:

     

    import flash.display.StageDisplayState;
    
    stage.displayState = StageDisplayState.FULL_SCREEN_INTERACTIVE;

     

     

    I hope this helps.

     

    Regards,

    JC

    Participating Frequently
    January 25, 2021

    That working.... Great !

     

    Thank you João.