Yes, this is what i’m talking about. The reason i’m asking is because i want to make the project like a template, and the number of layers varies, it can be 5 lines, maybe 15. I did find something like a counter (text source), it shows the number of active layers at current time:
n = 0;
for (i = 1; i < index; i++)
if (thisComp.layer(i).active)
n++;
(n)
so it would look like this:
z=0;
for (i=1; i
thanks!
Always learning