Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 267829
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T23:36:41+00:00 2026-05-11T23:36:41+00:00

Is there a way using Flash (CS3+AS3) to determine if the published swf is

  • 0

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.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-11T23:36:41+00:00Added an answer on May 11, 2026 at 11:36 pm

    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/

    This class provides two pertinent (and different) pieces of information:

    • Was the SWF built with the -debug switch (has debug symbols compiled in)?
    • Is the Flash player a debug player (has the ability to display errors, etc)?

    The Capabilities.isDebugger only answers the second question – is the user running the Flash Debug player. In your case, to gate portions of your application on a debug build, you want the -debug build check (and then don’t deliver -debug builds into production).

    Note however, that both these checks are runtime checks. Using conditional compilation (aka CONFIG::debug) around your debug code is still a good idea, as it will ensure that possibly sensitive debug code is NOT delivered in the final SWF, making it as small and secure as possible.

    I’m reproducing the referenced code here, in case the blog link ever goes down:

    package org.adm.runtime
    {
      import flash.system.Capabilities;
    
      public class ModeCheck
      {
        /**
         * Returns true if the user is running the app on a Debug Flash Player.
         * Uses the Capabilities class
         **/
        public static function isDebugPlayer() : Boolean
        {
            return Capabilities.isDebugger;
        }
    
        /**
         * Returns true if the swf is built in debug mode
         **/
        public static function isDebugBuild() : Boolean
        {
            var stackTrace:String = new Error().getStackTrace();
            return (stackTrace && stackTrace.search(/:[0-9]+]$/m) > -1);
        }
    
        /**
         * Returns true if the swf is built in release mode
         **/
        public static function isReleaseBuild() : Boolean
        {
            return !isDebugBuild();
        }
      }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 127k
  • Answers 127k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer The program (python) import csv infile=file("in","r") outfile=file("out","w") reader = csv.reader(infile… May 12, 2026 at 5:33 am
  • Editorial Team
    Editorial Team added an answer The table, as posted, shows up properly on the IE7… May 12, 2026 at 5:33 am
  • Editorial Team
    Editorial Team added an answer INSERT and UPDATE statements only operate on a single table… May 12, 2026 at 5:33 am

Related Questions

Is there a way to access the response headers from an HTTP result when
I'm using the Yahoo Uploader, part of the Yahoo UI Library, on my ASP.Net
Is there a way to call an external script or program from Flash CS3
Is there a way to add some custom font on a website without using

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.