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

Full screen mode help for android Air AS3

New Here ,
Aug 21, 2020 Aug 21, 2020

Copy link to clipboard

Copied

Screenshot_20200821-191501.png I really need help to know how to make my app start on android phones with the stage and the objects at the same time in the same size in full screen, I've tried everything and so far no solution is not possible. Everything I try still appears on a white background below the app and never gets full screen. If any developer knows something to help me, I appreciate it.

 

TOPICS
ActionScript , Code

Views

1.1K

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
Community Expert ,
Aug 22, 2020 Aug 22, 2020

Copy link to clipboard

Copied

When I did this sort of development, I'd always position and size everything programattically. You can get a lot of native hardware capabilities of mobiles from: https://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/system/Capabilities.html

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
New Here ,
Aug 22, 2020 Aug 22, 2020

Copy link to clipboard

Copied

I'm going to go this same way, Thank you.

Updated: stage.scaleMode = StageScaleMode.EXACT_FIT solved all my problems

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
New Here ,
Oct 17, 2022 Oct 17, 2022

Copy link to clipboard

Copied

I'm also having trouble with this problem, please solve it

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
Community Expert ,
Oct 18, 2022 Oct 18, 2022

Copy link to clipboard

Copied

LATEST
Hi.

Please make sure that your app manifest (XML) has the max aspect set. Like this:
<android>
<!-- ... -->
<application>
<meta-data android:name="android.max_aspect" android:value="2.5"/>
<meta-data android:name="android.notch_support" android:value="true"/>
</application>
<!-- ... -->
</android>
 
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