Forum Replies Created

  • Ethan Dolan

    March 25, 2019 at 3:11 am in reply to: Changing composition duration through expressions

    where do i find it? and is it possible to control the duration through user input

  • Ethan Dolan

    July 5, 2018 at 3:02 pm in reply to: Adjusting text length through expression

    Thank you for breaking down the code. It really helped me to understand what’s going on

  • Ethan Dolan

    July 2, 2018 at 5:44 pm in reply to: Adjusting text length through expression

    How is this code working? Can you break it down to me. Most Importantly this code gives line break at space and not in middle of letters. I couldn’t figure out how this code is working.

    txt = value;
    if (thisComp.layer("Text Layer").text.sourceText.length >= 61){
    for (i = 61; i > 0; i--) if (txt[i] == " ") break;
    if (i > 0)
    txt.substr(0,i) + "\r" + txt.substr(i+1)
    else
    txt.substring(0,61) + "\r" + txt.substring(62,999);
    }else{
    txt
    }

  • Ethan Dolan

    June 13, 2018 at 6:11 pm in reply to: thisProperty

    Is there any way to trigger a specific animation in a layer property. For eg, i have three animations in the position property of a layer from 0 to 20 frames, 1:20 sec to 1:40 sec and 2:00 to 2:20 sec. How can the animation between 1:20 to 1:40 can only be triggered while playing the entire timeline. Is this even possible?

    Thankyou

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