Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

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

Community Beginner ,
Jan 21, 2021 Jan 21, 2021

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

294
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Community Expert , Jan 22, 2021 Jan 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

Translate
Community Expert ,
Jan 22, 2021 Jan 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

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Beginner ,
Jan 25, 2021 Jan 25, 2021

That working.... Great !

 

Thank you João.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Beginner ,
Jan 25, 2021 Jan 25, 2021

That working.... Great !

 

Thank you João.

Philippe

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Jan 25, 2021 Jan 25, 2021
LATEST

Excellent!

 

You're welcome!

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines