Before i come to the actual problem i have i want to explain in which environment it occurs.
When I check a checkBox i want to trigger multiple tweening operations on multiple objects with just this action. This is no problem.
For example: I want the window in which the checkbox is located to expand when it is checked and to shrink to its original size when it gets unchecked.
There is no problem in this because i can toggle the tweening operation.
But i also want that multiple elements appear on the additional space of the window while it expands. These elements should not appear simultaneously but after another (for example the top element first then the others and the element at the bottom is the last). In the same manner they should disappear when the window shrinks again. But now the bottom element has to disappear first and afterwards all the others. Obviously i cannot use toggle here.
Is there a possibility to somehow trigger tweening operations based on conditions without coding?
When coding is needed where should the scripts be placed? How should it be done?