-
Advanced After Effects Cursor Blinker
Hi,
So I found an After Effects expression that adds a cursor blinker to your text.
Speed = 10; // typing speed
Blink = 2; // Speed of blinking cursor
CursorType = “|” // cursor type. Usually it is a vertical line “|” or Underscore symbol ‘_’
F = Math.round(time*Blink % 1);
L = text.sourceText.length;
T = (time – thisLayer.inPoint)*Speed;
if(F ==1 | (T<L & T>0) ){Fl=CursorType;}else{Fl=””;}
substr(0,T) + Fl
So this is pretty much what I want, although I want it to do just one more little thing. Every time it reveals a letter, I want the letter to turn into an asterisk (*). Just imagine you’re writing down your password during login, and it reveals each letter as you type, and in the next split second, it converts every letter into ‘*’. So by the end of it you just get ‘******’ depending on how many letters you’ve typed.
Possible?