Thanks Millenium, but no go. I copied and pasted the expression to the text property and it starts
counting at 0 and ends at 994.00000000 with lots of places following after the decimal.
Dans expression for the money counter is this…
This is an expression for the source text of a text layer that should do the trick. Use a monospaced font or set kerning to 0:
startValue = 64122205;
endValue = 85302264;
dur = 30; //seconds
s = “” + Math.round(linear(time,0,dur,startValue,endValue));
“$” + s.substr(0,2) + “,” + s.substr(2,3) + “,” + s.substr(5,3)
Tom