iMacros ignore errors

ha4x0r

Charged back on BHW membership - account banned
Joined
Aug 23, 2014
Messages
111
Reaction score
15
I am aware that you can use 'SET !ERRORIGNORE YES' at the beginning of the script however what I want to achieve is ignore error on one line only how can that be done?
 
Easily. :)

The default setting is no, so set error ignore to yes before the line and set it to no after the line.

Code:
SET !ERRORIGNORE YES
'the line of code where you want to ignore the errors'
SET !ERRORIGNORE NO
 
Easily. :)

The default setting is no, so set error ignore to yes before the line and set it to no after the line.

Code:
SET !ERRORIGNORE YES
'the line of code where you want to ignore the errors'
SET !ERRORIGNORE NO
Thanks for your help!
 
Back
Top