Creative Communities of the World Forums

The peer to peer support community for media production professionals.

Activity Forums Adobe After Effects COW Tutorials: After Effects Creating an Automated Odometer: Part 2

  • COW Tutorials: After Effects Creating an Automated Odometer: Part 2

    Posted by Kathlyn Lindeboom on August 30, 2007 at 8:03 pm
    Creating an Automated Odometer: Part 2

    In this video tutorial, with the guidance of the COW’s expression guru Dan Ebberts, Creative Cow leader Aharon Rabinowitz shows you how to set up an automated odometer effect. If you’ve been wanting to dig deeper into expressions, then this is the tutorial for you.

    Click on the link above to view Aharon’s tutorial.

    Kathlyn Lindeboom
    Creativecow.net

    Mike Clasby replied 19 years ago 3 Members · 3 Replies
  • 3 Replies
  • Mike Clasby

    August 31, 2007 at 4:52 am

    Aharon, nice walk-through on the odometer-Offset-expression.

    I’m on AE6.5 so I can’t see if your downloadable aep has that Dan expression that snaps the offset when the preceding row hits 10. Do you think you could post that here so I can take a look at it? Curiosity is killing this cat.

  • Julian Sixx

    September 1, 2007 at 4:45 pm

    Hi

    I help you out here

    slider = thisComp.layer(“Null 1”).effect(“Slider Control”)(“Slider”);
    myDigit = Math.floor(slider/1000)%10;
    previous = slider%1000/1000;
    myVal = myDigit + linear(previous,.999,1.0,0,1);
    y = linear(myVal,0,10,1500,0);
    x = value[0];
    [x,y]

    slider = thisComp.layer(“Null 1”).effect(“Slider Control”)(“Slider”);
    myDigit = Math.floor(slider/100)%10;
    previous = slider%100/100;
    myVal = myDigit + linear(previous,.99,1.0,0,1);
    y = linear(myVal,0,10,1500,0);
    x = value[0];
    [x,y]

    for the 3th. expression change the values accordingly

  • Mike Clasby

    September 1, 2007 at 5:25 pm

    Thanks, I’ll check it out.

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