Learn how to create counting number animations in After Effects without any plugins. I show you two methods: one with slider control (limited to 1 million) and a better way using expressions that counts to any number.
Here is the expression that I'm using in the video:
var start = 0;
var end = 1000000;
var duration = 3;
var t = time;
var progress = Math.min(t / duration, 1);
var currentValue = Math.floor(start + (end - start) * progress);
currentValue.toLocaleString();
#aftereffects #tutorial #counting #numbers #animation #learning #howto