How can i know which trigger is active for the module? |
Re: How can i know which trigger is active for the module? Ken. Attachments attachment_14625618_Delete_Persistent_Triggers.dxl |
Re: How can i know which trigger is active for the module?
Did not look at the Galactic script. But I know you need to distinguish between "those active for" and "those stored in". Triggers stored in a module apply to that module, those in a project to all modules in that project and sub-projects, and those stored in the database for all modules.
Trigger trg
for trg in current Module do{}
for trg in current Project do{}
for trg in database do{}
... you will also want some sort of recursive loop to get ancestor nested Projects.
for trg in Project parent(current Project) do{}
|