Skip to main content
Participant
January 21, 2021
Beantwortet

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

  • January 21, 2021
  • 2 Antworten
  • 334 Ansichten

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

    Dieses Thema wurde für Antworten geschlossen.
    Beste Antwort von 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 Antworten

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

    Excellent!

     

    You're welcome!

    JoãoCésar17023019
    Community Expert
    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.