Not sure how to phrase this but I'm wondering if I can create a catchall error handler that umbrellas the entirety of the code, to send to a custom handler that outputs the info graphically within the program. Something along the lines of:
root.addEventListener(ErrorEvent.ERROR, this.customHandler);
I'm hoping to stop any and all from getting to Flash Debug, without placing all of my main code in a TRY/CATCH block. . .