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

Deploy kiosk full-screen with AIR

New Here ,
May 12, 2019 May 12, 2019

Copy link to clipboard

Copied

I finished building an Animate interactive kiosk including video pieces. Published from Adobe Animate as a desktop AIR for Windows app and need to run in full screen without any window border for a conference. What can I change in the Animate Publish options to run full screen when the app is launched?

Thanks

Views

438

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

correct answers 1 Correct answer

Community Expert , May 12, 2019 May 12, 2019

Hi.

You need to change the stage display state with AS3. Like this:

import flash.display.StageDisplayState;

stage.displayState = StageDisplayState.FULL_SCREEN_INTERACTIVE;

Regards,

JC

Votes

Translate

Translate
Community Expert ,
May 12, 2019 May 12, 2019

Copy link to clipboard

Copied

LATEST

Hi.

You need to change the stage display state with AS3. Like this:

import flash.display.StageDisplayState;

stage.displayState = StageDisplayState.FULL_SCREEN_INTERACTIVE;

Regards,

JC

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