Java has a method on the thread class: setUncaughtExceptionHandler(Handler). This way you can ensure that all exception will be handled. Does flex have something like this?
This is what I'm trying to achieve: People runnning my app will not have the debug version of flash running. When an error occurs I want to be able to catch it and show it to the user so he can copy paste it into an email and send it to me. I have it rigged so I can enable/disable this feature per user. I understand that surrounding everything with try/catch but that is not the answer I'm looking for. Anyone? Thanks, Stefaan

