-
Control speed of text tracking
I wrote the expression below. It does what I want to, but I had to manually calculate the duration of the fade so it would match when the layer is ending and accelerate the tracking from that point onward.
Can anyone help me tweak this expression so the tracking speeds up automatically as the out point of the layer approaches and I am able to extend or retract said out point without having to recalculate the duration of the fade each time?
Thanks in advance for your help.
t=time;
fadeDur = 1.55;if
(t<=2)
{
time
}
else
{
easeOut(time,outPoint,outPoint-fadeDur,0,30)
}
;