[Flashcoders] try-catch-finally ...

2009-03-03 Thread SJF
Technically, it's good practice/professional to use try-catch-finally blocks in your actionscript logic. This ensures a robust, easily debugg-able application. However, can anyone comment if they actually use try-catch-finally or whether anyone is for or against it's use. I ask because I've recei

Re: [Flashcoders] try-catch-finally ...

2009-03-04 Thread Weyert de Boer
Sure. Reasonable good practice to catch exceptions. I normally use it for things like catch the exception and try it once again and if it fails for the second time. I will show an error message or try secondary option. Technically, it's good practice/professional to use try-catch-finally blocks