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

Deploy kiosk full-screen with AIR

New Here ,
May 12, 2019 May 12, 2019

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

526
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 , 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

Translate
Community Expert ,
May 12, 2019 May 12, 2019
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

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