Hi, I have this suggestion for the next release, what about "grouping" the conditions in an "OR-BLOCK", for example:
I have one conditions that checks a value and I added a "trigger once" limiter...
"if GlobalVariable = "0"/ trigger once >>>>>> do the action."
But I want the same action with a mouse click, and if I convert it to a "Or block" I get:
"if GlobalVariable = "0" -OR- "On Click" -OR- "trigger once" >>> the action loop because of the true-condition of the variable, and the trigger once becomes useless.
For a simple event it's easy to "duplicate" the condition for the Value and the Mouse, but I have 3 or 4 level nested events, and more than 4 conditions that triggers that event, and if I later want to edit the Action, I will have to edit each one of them.. which may lead to errors.
what I'm suggesting is something like:
"if GlobalVariable = "0" / trigger once -OR- On Click -OR- .......>>>>>
like an "AND" function as one parameter for an "OR" function