Skip to main content
Inspiring
June 19, 2011
Answered

StageScaleMode.EXACT_FIT not supported in air 2.7 for ios?

  • June 19, 2011
  • 1 reply
  • 822 views

stage.scaleMode = StageScaleMode.EXACT_FIT;

Does not work correctly air 2.7 for ios. It is all messed up.

This is what my program looks like in air 2.6 for ios:

http://literacysoft.com/uploads/2.6.PNG

This is what it looks like when compiled with air 2.7:

http://literacysoft.com/uploads/2.7.PNG

Is there anything I can do to fix this?

-Scott

This topic has been closed for replies.
Correct answer sanika Kulshreshtha

I think you are hitting the GPU fullscreen bug in AIR 2.7(http://forums.adobe.com/message/3747867). It suspect it is not related to the scale mode that you are setting. To confirm, you could set the renderMode to cpu in your application xml. You should not be able to reproduce the bug.

-Sanika

1 reply

sanika KulshreshthaCorrect answer
Participating Frequently
June 20, 2011

I think you are hitting the GPU fullscreen bug in AIR 2.7(http://forums.adobe.com/message/3747867). It suspect it is not related to the scale mode that you are setting. To confirm, you could set the renderMode to cpu in your application xml. You should not be able to reproduce the bug.

-Sanika

Inspiring
June 20, 2011

Thank you!