How to count over 1,000,000 in After Effects?
How to count over 1,000,000 in After Effects?
Question
I'm using After Effects CC and I want to count numbers over 2,000,000. There are two effects I tried to use:
- "slider control" - the problem with this effect it has limit to 1,000,000 and I can't enter a higher value.
- "numbers" - it has the same problem, it is limited to 30,000 and I can't enter a higher value .
What can I do to count over 1,000,000?
Thank you.
2015/03/01
Popular Answer
Maybe you should use a text layer with an expression to about 3,000,000.
Here's an example that count from 0 to 3,000,000 in 4 seconds:
startCount = 0;
endCount = 3000000;
countDur = 4;
Math.round(linear(time,0,countDur,startCount,endCount))
2015/03/01