And if you would like to count over 1,000,000 and keep the comma’s in:
startCount = 0;
endCount = 48000000;
countDur = 3;
var num = Math.round(linear(time,0,countDur,startCount,endCount))
num = Comma(num);
[num]
function Comma(number)
{
number = ” + Math.round(number);
if (number.length > 3)
{
var mod = number.length % 3;
var output = (mod > 0Â ? (number.substring(0,mod))Â : ”);
for (i=0Â ; i < Math.floor(number.length / 3); i++)
{
if ((mod == 0) && (i == 0))
output += number.substring(mod+ 3 * i, mod + 3 * i + 3);
else
output+= ‘,’ + number.substring(mod + 3 * i, mod + 3 * i + 3);
}
return (output);
}
else return number;
}