vote up 0 vote down star

Although I love a good try/catch as much as the next guy/gal, I would like to just see all of my errors in the debug version of the Flash player. Instead of that, SOMETIMES they are getting shown by the player with an alert box (not mine, so I know it's the Debug version of the player), and sometimes they are just not showing. I'm using the MAC 10,0,22,87 debug player downloaded just moments ago from Adobe (in firefox 3.0.10). Do I need to set any special parameters?

Project is a pure ActionScript project using Flex Framework 3.2.

flag

61% accept rate

2 Answers

vote up 0 vote down

You do not need to set any special parameters. When you say "sometimes they are not showing" what exactly do you mean? There are situations where the Flex framework will swallow errors if they result from the triggering of a binding. Here's one such example:

<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" creationComplete="onCreationComplete()">

    <mx:Script>
        <![CDATA[

            [Bindable] public var someObject : Object;

            private function onCreationComplete() : void {
                someObject = new Object(); // triggers binding that swallows error
                labelFunction(null); // invoking function directly will trigger error
            }

            private function labelFunction(obj:Object):String {
                try {
                    return obj.nonExistentProperty;
                } catch (e : Error) {
                    trace("caught reference error, rethrowing...");
                    throw e;
                }
                return "";
            }

        ]]>
    </mx:Script>

    <mx:Label text="{labelFunction(someObject)}"/>

</mx:Application>
link|flag
I mean, the same error, in the same place, sometimes shows and sometimes it doesn't. The code is always being called in the same way, and I'm not using bindings in this project. – yar May 13 at 10:08
vote up 1 vote down

For me, the alert box has always been inconsistent. When I run the project in debug mode using FB, however, it always catches them and prints them to the console and stops at a breakpoint.

If you don't have access to FB, set up your trace log (google flashlog.txt) and any errors should print there.

link|flag
True that about inconsistency, yet this wasn't true with Flex 2. Also, regarding the flashlog.txt, my understanding is that it doesn't work as it's supposed to in Flash Player 10 (meaning it doesn't work at all). – yar May 13 at 10:09
I've never noticed inconsistencies with the error popup. However, I usually always run my apps with the debugger, so it's rare that I see the popup at all (Mostly only on production sites built by others. Haha!) – joshtynjala May 15 at 23:12

Your Answer

Get an OpenID
or

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