-
color change to blinking cursor expression
I’m using this expression to animate a blinking cursor.
I would like to change the color and size of the cursor. Is this possible?CH = Math.round(effect("LetterNumber")("Slider"));
BlinkSpd = effect("BlinkSpeed")("Slider");
F = Math.round((time * BlinkSpd) % 1); //result flickers between 0 and 1 for blinker on-off;
TypeSpd = effect("LetterNumber")("Slider").speed;
if (F==1 | TypeSpd > 0){Cursor = "|"} else {Cursor = "";}
substr(0,CH) + Cursor;