Creative Communities of the World Forums

The peer to peer support community for media production professionals.

Activity Forums Adobe After Effects Expressions Expression ”time” making an error

  • Expression ”time” making an error

    Posted by Riccardo Bianche on April 6, 2016 at 9:29 am

    Alloha CC!
    I`ve got error “expression result must be of dimension 2, not 1” when trying to run expresion at clock “Position” in .mov;
    So, here`s code:

    timetostart = 4;
    if (time >= timetostart)
    {
    wiggle(time,time*10)
    }
    else
    {
    }
    ;

    Dan Ebberts replied 10 years, 5 months ago 2 Members · 1 Reply
  • 1 Reply
  • Dan Ebberts

    April 6, 2016 at 4:18 pm

    You need to provide a result when the time is less that your start time. Try this:

    timetostart = 4;
    if (time >= timetostart)
    {
    wiggle(time,time*10)
    }
    else
    {
    value
    }

    Dan

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