Tomcatus
Tomcatus

Reputation: 167

ActionScript3 when fullscreen doesn't react

I've go a strange problem in my AS3 project. When going into fullscreen the communication seems to hang up. No HTTP requests are sent to the server, loaders have problems with loading assets, even those from browser's cache.

What's even more surprising is the fact that it doesn't happen every time but only sometimes on local version of the game. When then game is deployed on the outer servers and one start using it from a website it has those problems listed above.

I initialize fullscreen mode it such way:

gameStage.quality = StageQuality.MEDIUM;
gameStage.displayState = StageDisplayState.FULL_SCREEN_INTERACTIVE;

and before I set also this properties:

gameStage.scaleMode = StageScaleMode.NO_SCALE;
gameStage.align = StageAlign.TOP_LEFT;

I've got no idea what can be possibly wrong, espacially it doesn't happen on my local versions of the same game. I've googled a lot for a solution but nothing seemes to work. I'll appreaciate every possible help sooner than better cause I'm in quite of hurry to deploy the game.

Upvotes: 1

Views: 253

Answers (1)

weltraumpirat
weltraumpirat

Reputation: 22604

You've got yourself a security issue. You should always use the content debugger version of Flash Player and/or configure mm.cfg to see any error messages.

Also, note that FULL_SCREEN_INTERACTIVE is only supported by AIR applications.

Upvotes: 1

Related Questions