vote up 4 vote down star
4

Is there a way using Flash (CS3+AS3) to determine if the published swf is running in a debug player or in Flash's debug mode?

I'm aware that Flex provides the ability to setup different build targets (release/debug) and that you can use something like CONFIG::debug for #ifdef style inclusion of code at compile time.

I'm imagining something like System.isDebug() but can't find anything. I want to use this because there's debug functionality in my app that I definitely don't want to be available in a production environment.

flag

Great question. It's important to know this because errors blow up with warnings for the user in the debug player, and there are probably other differences. – yar Dec 14 '08 at 16:40

2 Answers

vote up 3 vote down check

check out this class http://blog.another-d-mention.ro/programming/how-to-identify-at-runtime-if-swf-is-in-debug-or-release-mode-build/

The one you're refering to as System.isDebug() is actually Capabilities.isDebugger but returns true if the use have Flash Player Debuger version and not if he's running a swf built in debug or relase mode.

The class there has a function that tests for both situations.

link|flag
vote up 5 vote down

Capabilities.isDebugger

link|flag
Exactly this, except it's a property, not a method, so the parentheses should be removed. – hasseg Oct 9 '08 at 13:06
Nice catch, fixed :) – Antti Oct 9 '08 at 15:31
Oh, snap! Thanks! – aaaidan Oct 9 '08 at 20:56

Your Answer

Get an OpenID
or

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