vote up 0 vote down star

I need to detect if running in ADL or not, I can't seem to fine an answer that is guaranteed...I found a couple posts online that say "this might work..." Is there a reliable way to check?

Thanks.

flag

1 Answer

vote up 2 vote down check

Unless I'm misunderstanding,

if (Capabilities.isDebugger)
{
    Alert.show("Debugger!");
}
else
{
    Alert.show("Not the debugger.");
}

... should be what you're looking for. (If so, my apologies! Post back and I'll adjust accordingly.)

link|flag
Technically: (Capabilities.playerType == "Desktop" && Capabilities.isDebugger) – Richard Szalay Jul 16 at 12:28
I have a question, if they just happen to have the debugger version of flash player installed, will that make this inaccurate, or will that not matter? Thanks!! – John Isaacks Jul 16 at 13:49
It won't matter; AIR has its own runtime. (I have the debug player installed myself, and verified this example worked before posting it just to be sure.) – Christian Nunciato Jul 16 at 14:12
Great, thank you! – John Isaacks Jul 16 at 15:11
Capabilities.playerType will only return "Desktop" while running in AIR/ADL. – Richard Szalay Jul 17 at 7:49

Your Answer

Get an OpenID
or

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