Dan,
apologizes for taking more of your time for such basic questions,
but what is the best way to combine
textIndex%6 == 2 ? 100 : 0
and
textIndex%6 == 0 ? 100 : 0
so one expression will cover both of these situations.
I am asking all of this because I am taking #2 from
thisProperty.propertyGroup(3).name;
where "Animator" name is "2".
Of course, I start with "1" and by duplicating the animator everything works fine until I hit the 6th copy. As you recommended I could change it manually into "0" but I am looking for the way that the original expression applied to the "1" will work in the "6" etc., as well.
Thank you in advance.
Like this I guess:
n = thisProperty.propertyGroup(3).name%6;
textIndex%6 == n ? 100 : 0