How do I create a 5-digit slider expression? (It's for a lab test LCD screen animation.)
I know how to control the digits after the decimal using value.toFixed; however, I want to start with +00000.0 and end with the number I choose (eg: +01234.5). Right now my slider starts with +00.0 and ends with +01234.5. Does anyone know if this can be fixed with Effect Controls or using the Expression (JavaScript)?
Here's my current Expression: "+0"+ effect("Slider Control")("Slider").value.toFixed(1)
