RE: [flexcoders] Re: How to turn off exception messages in release version.

2008-02-22 Thread Alex Harui
you can improve your code. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Gaurav Jain Sent: Friday, February 22, 2008 9:53 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: How to turn off exception messages in release version

[flexcoders] Re: How to turn off exception messages in release version.

2008-02-22 Thread Gaurav Jain
try { // You code here } catch (error:Error) { // swallow the error and continue. } --- In flexcoders@yahoogroups.com, "lytvynyuk" <[EMAIL PROTECTED]> wrote: > > How to turn off exception messages ( e.g. ActionScript errors ) in > release version? >