Re: [flexcoders] Re: How to get GlobelErrorHandling working.

2010-06-21 Thread Alex Harui
From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Alex Harui Sent: Monday, June 21, 2010 1:27 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Re: How to get GlobelErrorHandling working. GEH for modules is broken in 10.1. On 6/21/10 5:53 AM

RE: [flexcoders] Re: How to get GlobelErrorHandling working.

2010-06-21 Thread Battershall, Jeff
oders@yahoogroups.com Subject: Re: [flexcoders] Re: How to get GlobelErrorHandling working. GEH for modules is broken in 10.1. On 6/21/10 5:53 AM, "valdhor" wrote: I haven't looked it up but does the uncaught error event bubble? if so, I would add the event listener to both

Re: [flexcoders] Re: How to get GlobelErrorHandling working.

2010-06-21 Thread Alex Harui
GEH for modules is broken in 10.1. On 6/21/10 5:53 AM, "valdhor" wrote: I haven't looked it up but does the uncaught error event bubble? if so, I would add the event listener to both the main app and the systemManager. this.addEventListener("uncaughtError", globalErrorHandler); systemMa

[flexcoders] Re: How to get GlobelErrorHandling working.

2010-06-21 Thread valdhor
I haven't looked it up but does the uncaught error event bubble? if so, I would add the event listener to both the main app and the systemManager. this.addEventListener("uncaughtError", globalErrorHandler); systemManager.addEventListener("uncaughtError", globalErrorHandler); --- In flexcoders@y

[flexcoders] Re: How to get GlobelErrorHandling working.

2010-06-21 Thread reflexactions
OK I spotted the obvious error. systemManager.loaderInfo should be: systemManager.loaderInfo["uncaughtErrorEvents"] After that I am getting error that I forced into the main app but an error in a module didn't show up in the GEH, it threw an error and went to the old std popup window. Do I n