Creative Communities of the World Forums

The peer to peer support community for media production professionals.

Activity Forums Adobe After Effects Expressions AE count up by hundreds

  • AE count up by hundreds

    Posted by Georgi Vasilev on May 28, 2018 at 2:18 pm

    Hi guys,

    I am tearing my hair out here. Just went to the end of the internet but couldn’t find an answer on how to achieve what I am looking for. Can anyone please please help me make my counter go up in hundreds? No commas, no dots just straight up like 100,200,300 etc.?

    What I currently have is the text layer with applied slider and the expression:

    Thank you so much!

    Math.round(effect("Slider Control")("Slider"))

    Ok so a cool guy on Facebook helped me figure it out. I’ve used this expression:

    x = effect(“Slider Control”)(“Slider”)
    Math.round(x/100)*100

    Kevin Luca aubert replied 7 years, 11 months ago 2 Members · 1 Reply
  • 1 Reply
  • Kevin Luca aubert

    May 31, 2018 at 11:15 am

    You could also trick it like that if you want it to go by itself by copying this in the text source (s is the speed, knowing that x1 speed is 100/sec) :

    s = 1
    if(time<1) 0 else Math.floor(time*s)+"00"

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