Hi Jantzen,Thanks for taking the time to answer this.What I would like
to do is have a custom condition, and the if the check fails, add the
name of the rule to a global variable.pseudo
code:----------------------------------------------------------------var
result = ( [custom condition logic] );if( !result )
window.failedRuleArray.push([the name of this rule]);return
result;----------------------------------------------------------------for
this to work, the condition needs to know the name of ...