Answered
Stopwatch Timer Expression
I am looking to make a stopwatch timer in AfterEffects with the Slide Control. I want to display minutes, seconds, and milliseconds (00:00:00). I cannot find the correct source text for it.
This is what I currently have:
slider = Math.round(effect("Slider Control")("Slider"))
sec = slider%60
min = Math.floor(slider/60)
function addZero(n){ if (n<10) return "0" + n else return n }
addZero(min) + ":" + addZero(sec)
