Hello, I'm developing a plugin based on Dictionary. Can anyone explain me, please, what this code does?
instanceProto.doForEachTrigger = function (current_event)
{
this.runtime.pushCopySol(current_event.solModifiers);
current_event.retrigger();
this.runtime.popSol(current_event.solModifiers);
};
[/code:2x6kii8w]
I see that inside of cf_looping conditions I have to execute the following code:
[code:2x6kii8w]
var current_event = this.runtime.getCurrentEventStack().current_event;
// enter the for loop here
this.doForEachTrigger(current_event);
[/code:2x6kii8w]
Thank you!