Adding comma to Numbers in Expression Counter
Hi All,
I'm new to expression controls in after effects. I have a number counter and I've tried a few different approaches to this (Slider control and a longer string of expression code). Ultimately I decided to use this simple control as it allowed me to control how the numbers jump quite easily:
beginTime = 0;
endTime = 3.5;
startVal = 29219;
endVal = 20188;
Math.round(linear(time,beginTime,endTime,startVal,endVal)/200)*200
The problem is I cant seem to get a comma built in. Not sure if this is because I am trying legacy methods with a JavaScript project. Help if possible. Thank you!
