Creative Communities of the World Forums

The peer to peer support community for media production professionals.

Activity › Forums › Adobe After Effects Expressions › Find Range Selector speed

  • Dan Ebberts

    July 2, 2015 at 5:45 pm

    I’m not sure exactly what you’re asking, but you can likely calculate characters-per-second with something like this:


    n = text.sourceText.length;
    s = text.animator("Animator 1").selector("Range Selector 1").start;
    if (s.numKeys > 1){
    charPersec = n/(s.key(s.numKeys).time - s.key(1).time);
    }else{
    charPerSec = 0;
    }

    Dan

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