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

How to hide menu bar in Mac when running AIR app

Contributor ,
Jul 17, 2017 Jul 17, 2017

Copy link to clipboard

Copied

When we run our app, we still see the doc and menubar

We wish for our AIR app to run full screen over everything.

Is there any special setting we need to put in AIR manifest or call specific API?

Thanks,

Sean

TOPICS
Development

Views

753

Translate

Translate

Report

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
Engaged ,
Jul 19, 2017 Jul 19, 2017

Copy link to clipboard

Copied

In your application descriptor

<systemChrome>none</systemChrome>

<supportedProfiles>extendedDesktop</supportedProfiles>

in your main sprite call

stage.displayState = StageDisplayState.FULL_SCREEN_INTERACTIVE;

Votes

Translate

Translate

Report

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
Contributor ,
Jul 19, 2017 Jul 19, 2017

Copy link to clipboard

Copied

thank you, will try it, tx again,

Sean.

Votes

Translate

Translate

Report

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
Engaged ,
Jul 19, 2017 Jul 19, 2017

Copy link to clipboard

Copied

LATEST

The code I gave will go to full fullsceen.

mukulc40482905​ is right in that you can't remove the menu bar in non-fullscreen mode

Votes

Translate

Translate

Report

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