08-22-2022 11:00 AM
Hi folks,
I am currently trying to build a function that is supposed to wait for any out of multiple User Events to occur
These User Events can change, and how many there are can change as well.
Below and attached is a prototype with two sample events, but my structure on the right only reacts to the last event in the array, not the others
Is there a way to properly do what I attempted below so the structure can react to N events?
Thank you very much!
Jakob
Solved! Go to Solution.
08-22-2022 11:11 AM
Register for the array as the entire array, not the elements one by one:
08-22-2022 11:16 AM
So easy I completely missed it
It works exactly as intended
Thank you!