Slider Effect cannot go over 1 million
as the title suggest Slider Effect cannot go over 1 million. this is very annoying and hard to understand in 2019. (also unbelievably number effect cannot go over 30.000)
i am tring do animate a youtube view counter that goes over 1 million.
using this expression on a empty text layer
n = 0+effect("Slider Control")("Slider"); < THIS IS THE SLIDER CONTROL
s = "" + n;
str = s.substr(-s.length, (s.length-1)%3 +1);
for (i = Math.floor((s.length-1)/3); i > 0; i--){
str += "," + s.substr(-i*3,3);
}
str
Any work around? or alternative tecniques?
