I’ve been tweaking this expression to set opacity to 100 every 20th frame and then fade out again, repetively. It’s all working as I want exept that I can’t for the life of me get it to start the loop at the text layers inPoint. Anyone got an idea of how to achieve that?
period = 20;
f = timeToFrames();
seg = Math.floor(f/period);
interp = time - framesToTime(seg*period);
minVal = 0;
maxVal = 100;
linear(interp,0,framesToTime(period),maxVal,minVal)