Skip to main content
timd68750977
Participant
May 12, 2019
Answered

Deploy kiosk full-screen with AIR

  • May 12, 2019
  • 1 reply
  • 564 views

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

    This topic has been closed for replies.
    Correct answer JoãoCésar17023019

    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

    1 reply

    JoãoCésar17023019
    Community Expert
    JoãoCésar17023019Community ExpertCorrect answer
    Community Expert
    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