-
Count numbers up in intervals
How do I tell this number counting expression to go in intervals of 10,000?
Thanks for any help!
startCount = 80000;
endCount = 500000;
countDur = 200;
s = "" + Math.round(linear(time,0,countDur,startCount,endCount));if (s.length > 3){
s.substr(0, s.length -3) + "," + s.substr(-3);
}else{
s
}