Hi Dan
This expression works awesome as type on effect. I have a text with this expression inside a composition (“text”) nested in another composition (“chat”). In this composition, I have an adjustment layer with a mark called “start”. I was wondering if there is some way to make this text expression start with that mark. Thank you in advance
minRate = 1;
maxRate = 2;
charCount = 0;
t = inPoint;
seedRandom(index,true);
while (t < time){
charCount++;
t += framesToTime(random(minRate,maxRate));
}
value.substr(0,charCount)