-
Counter – “moving” numbers
Hey all,
I’m working in this counter from 0 to over 306 million. I managed to make it work just fine but the client don’t want the commas and the numbers to move to left and right. They want the commas and the space between numbers to be steady/locked.
Any idea how to do that?
I’m using “Point control” on the text layer and the following expression:s = “” + Math.round(effect(“Point Control”)(“Point”)[0]);
s.replace(/\B(?=(\d{3})+(?!\d))/g, “,”);Thank you,