-
Random speed typewriter with a blinking cursor
I’ve been using this Dan’s expression:
minRate = 3;
maxRate = 6;
charCount = 0;
t = inPoint;
seedRandom(index,true);
while (t < time){
charCount++;
t += framesToTime(random(minRate,maxRate));
}
value.substr(0,charCount)and I want to add a blinking cursor (“|”) and the end but can’t figure it out.
Can anyone point me in the right direction?
Thanks.