Ignore Failure of parent does not Ignore Failure of children

Is it possible to ignore the failure of all of the children if "Ignore Failure" for the parent is selected?  When having a long list of actions, it is extremely tedious to have to individually select/deselect this for each child of a parent to turn this option on/off.

For instance, most of the "main" parents I have are ActionLists.  If I Ignore Failure of the ActionList, I would really like for everything within that ActionList to have the same behaviour.

Thanks in advanced for your help!!!

Tracey

Hi Tracey,

You can drive the Ignore Failure via script and a variable - which would make turning it on/off a lot quicker.

ie. Create a new variable, eg. IgnoreGroup and set it to either True or False (edit variables in Tools menu | Edit Variables)
Then in the BeforeAction script event of the actions you want to change, use the following VBScript code:
Action.IgnoreFailure = IgnoreGroup

then you can simply change the value of IgnoreGroup in the variables editor or Set Variable action.

hth.
.t8