[flexcoders] Re: How to verify a URL before loading it OR how to catch IOException

2007-09-26 Thread tjcox1969
Yup. That worked! Thanks a lot. --- In flexcoders@yahoogroups.com, "Sandeep Malik" <[EMAIL PROTECTED]> wrote: > > Hi, > > The reason this approach will not work is that the error you are > getting is an asynchronous error, i.e. something that happens in a > different code path (when you respo

[flexcoders] Re: How to verify a URL before loading it OR how to catch IOException

2007-09-26 Thread Sandeep Malik
Hi, The reason this approach will not work is that the error you are getting is an asynchronous error, i.e. something that happens in a different code path (when you response return from server). 'try- catch' can only protected in the current execution stack. A simple look up at the StyleManage