I've noticed that there are certain AIR options that don't work in the flash test player (the one that previews movies when you Ctrl + enter).

One example is NativeApplication.startAtLogin.

If it is called from the standalone player (double clicking on the swf file, for example) it works, but if i test it on the flash ide it will throw an error.

Is there a way to detect if I'm testing the movie in the ide and so avoiding to use that property?

link|improve this question

73% accept rate
Duplicate stackoverflow.com/questions/461923/… – Richard Szalay Mar 20 '09 at 9:52
Nearly: in the other question wasn't specified about the debug player. – kajyr Mar 23 '09 at 8:18
feedback

1 Answer

up vote 1 down vote accepted

flash.system.Capabilities has a property named playerType, which is set to "External" when using the test player and "Desktop" when using AIR. So,

import flash.system.Capabilities;

...

if (Capabilities.playerType != 'External')
  // do stuff that don't work in the test player
if (Capabilities.playerType == 'Desktop')
  // do stuff that works only in AIR
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.