-
After Effects Number Counter – Change Size of Comma Separators
Hi there,
I’m animating a few number counters for a client, animating from 10,000 to 100,000 for example.
I used the following piece of code to build my slider and add the comma separators:
s = “” + Math.round(effect(“Slider Control”)(“Slider”))
s.replace(/\B(?=(\d{3})+(?!\d))/g, “,”);The numbers are all in 122pt font, but the client wants the comma separators to be smaller, around 73pts in size. Is there a way to modify my expression or add to it to achieve this?
Thank you!