quote:
Originally posted by whiz
Just out of interest, how do you make Plus! show a toast with an error code instead of an error in the Debug window? I had a quick look at your code but couldn't see it...
Afaik there isn't any magic or hidden setting to enable this.
You show the toast and error yourself.
Do this by using the try {} catch( e) {} methods. And in the catch show a toast with the error number (e.number).
So this wont work for all errors though, only the stuff you 'catch'.