Creative Communities of the World Forums

The peer to peer support community for media production professionals.

Activity Forums Adobe After Effects Per character pop-up text animation

  • Dan Ebberts

    November 24, 2024 at 8:00 pm

    Try this. Start with your string of text and apply a Scale Animator and set the Scale value to 0,0. Add an Expression Selector and delete the Range Selector. Replace the expression in the Expression Selector’s Amount property with this:

    rampUp = .5;
    rampDn = .5;
    delay = .25;
    myDelay = (textIndex-1)*delay;
    t = time - (inPoint + myDelay);
    if (t < rampUp)
    linear(t,0,rampUp,100,-50)
    else
    linear(t,rampUp,rampUp+rampDn,-50,0);

    Adjust the rampUp, rampDn, and delay variables to suit your needs.

We use anonymous cookies to give you the best experience we can.
Our Privacy policy | GDPR Policy