Creative Communities of the World Forums

The peer to peer support community for media production professionals.

Forums Adobe After Effects Expressions Rotate text at each marker without manually adding keyframes

  • Rotate text at each marker without manually adding keyframes

  • TIneke Van Schalkwyk

    February 2, 2023 at 11:31 am

    Do you think it is possible to rotate the text at each marker along the layer cycling through:
    0, -5, 0, 5 degrees.

  • Dan Ebberts

    February 2, 2023 at 4:42 pm

    Probably something similar to this:

    m = marker;
    n = m.nearestKey(time).index;
    if (time < m.key(n).time) n--;
    r = 0;
    if (n > 0){
    n = (n -1)%4;
    if (n == 1)
    r = -5
    else if (n == 3)
    r = 5;
    }
    r
Viewing 1 - 2 of 2 posts

Log in to reply.

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