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

Popular posts from this blog

c# - sqlDecimal to decimal clr stored procedure Unable to cast object of type 'System.Data.SqlTypes.SqlDecimal' to type 'System.IConvertible' -

Calling GetGUIThreadInfo from Outlook VBA -

Obfuscating Python code? -