How to Handle specific error
-
I want to do this function just don't know how to script it.
Ignore errors
do something
If error = SomeError1
do something else
if error = SomeError2
do something different
-
If you use "ignore errors", you get the variable "last error" which contains the name of the error.
-