actionscript 3 - try statement tripping debugger (as3) -
Trying a try-holding sequence that works fine in the release version, but running errors in debugger can be performed. Obviously there are errors, this is the reason why I am trying to use this stuff inside, but I'm thinking that by any means I can get the debugger to stop stopping. Although I do not even remember the error message, the app is no longer executed properly.
I have found a this [$ val]
that I need a blank return, there is no such variable in the class.
Try {return this [$ val] + ""; } Hold (error: ArgumentError) {// nothing} return "";
Again, it works, but it causes errors in debugger
Any ideas for alternative?
I suppose you hold a logic error in place of the real problem of handling a blank object Are + string error Try using:;
Try {return this [$ val]; } Hold (error: error) {// nothing} return "";
Comments
Post a Comment