Skip to main content
Participant
October 11, 2020
질문

After Effects number counter in steps of 10s

  • October 11, 2020
  • 1 답변
  • 5037 조회

I can't find a way to animate my number counter (numbers from 0% - 100%) in steps of 10s (just the 0% - 10% - 20%... - 100%). I am using the slider control and expression "Math.round" for whole numbers.

I am happy if someone can help. If possible a german answer would be even best for me, thank you.

1 답변

Dan Ebberts
Community Expert
Community Expert
October 11, 2020

Like this maybe:

 

s = effect("Slider Control")("Slider");
Math.round(s/10)*10 + "%"
Mirjam98A7작성자
Participant
October 12, 2020

This gives me one decimal number (E.g. 15,1%) now, but doesnt change something at the steps.

Nevertheless, thank you very much.

Dan Ebberts
Community Expert
Community Expert
October 12, 2020

I'm not sure how you could be getting that result. Is it possible you reversed the / and the * ?