Page 1 of 1

Enabling or Disabling Trigger Subgroups

Posted: Mon Oct 25, 2021 8:02 pm
by Kosmo
I have carefully organized triggers, largely so I can find things when I need to tweak them.

I want to write a trigger that disables or enables a subgroup of other triggers, but I only see how to do this with the parent group, ie.

Code: Select all

disableTrigger(Parent)
I want to do something like

Code: Select all

disableTrigger(Parent/child1)
to disable my triggers in the subgroup "child1" without interfering with the other triggers, or subgroups, in my "Parent" group.


Do we have this capability?

Re: Enabling or Disabling Trigger Subgroups

Posted: Mon Oct 25, 2021 9:06 pm
by demonnic
They aren't referred to via their hierarchy like that, it would just be disableTrigger("child1")

Re: Enabling or Disabling Trigger Subgroups

Posted: Tue Oct 26, 2021 12:55 pm
by Kosmo
Oh boy, so unique child-group names then.

Thank you.