Skip to main content
Participant
March 5, 2012
Question

Stretched text and image with FULL_SCREEN_INTERACTIVE after Air player update

  • March 5, 2012
  • 2 replies
  • 584 views

One of my Air applications uses StageDisplayState.FULL_SCREEN_INTERACTIVE to switch to full screen during the presentation of some sheets.

Everything worked fine untill some users reported a streching of texts and images in the sheets.

It turns out that the problem occurs after an update from the Adobe Air Player to 3.1 from  2.7.

The first screen shots shows the text as it should be, the second screen shot shows the text after the update of the Air Player.

The code used to go into the Full Screen mode is:

    public function setFullScreenInteractive(fullScreenWidth:int = Constants.INT_SCREEN_WIDTH_SMALL, fullScreenHeight:int = Constants.INT_SCREEN_HEIGHT_SMALL):void

    {

                         s.fullScreenSourceRect = new Rectangle(          0, 0, fullScreenWidth, fullScreenHeight);

        s.displayState = StageDisplayState.FULL_SCREEN_INTERACTIVE;

          }

with  Constants.INT_SCREEN_WIDTH_SMALL = 800 and  Constants.INT_SCREEN_HEIGHT_SMALL = 600.

I can reproduce the problem on a couple of computers with Windows Xp but it's not happening on all the computers I've tested.

Any idea how to fix this (without telling my users to Uninstall the current Air Player and reinstall the Air Player 2.7)?

Regards,

Bart

This topic has been closed for replies.

2 replies

chris.campbell
Legend
March 6, 2012

Hi Bart,

Unfortunately the correct screenshot link appears to broken.  Could you please open a new bug report on this over at bugbase.adobe.com?  Please post back with the URL so that others affected can add their comments and votes.  It would also help if we had a sample project/application that we can reproduce this issue with.  If you'd like to keep this private, please feel free to send it to me directly at ccampbel@adobe.com.

Thanks,

Chris

BvdRAuthor
Participant
March 9, 2012

Hi Chris,

Thanks for the replay.

I've posted a bug-description in the bugbase. Bugnr 3134373 https://bugbase.adobe.com/index.cfm?event=bug&id=3134373

I've made a small project file which reproduces the bug on my systems - you will find this file in the bugbase.

Regards,


Bart