Count-Up Timer Configuration Tutorial
The YT link below shows a Count-Up Timer tutorial I hope somebody in this forum can expand on because what I need to do is not covered in the tutuorial:
https://www.youtube.com/watch?v=FhDK12uvOBM
I need the timer to start at 1hour:30minutes:00seconds and then count-up to 1hour:37minutes:00seconds. What is the correct slider, keyframe, composition and/or expression edits needed so the clock counts up 7minutes and comes to a stop at 1hour:37minutes:00seconds? I hope somebody can give me some advice because I cannot make such a countup animation work correctly.
Below is the timer expression I am using just in case it needs to be modified to make this animation work as I described:
slider = Math.round(effect("Slider Control")("Slider"))
sec = slider%60
x = Math.floor(slider/60)
min= x%60
hour = Math.floor(slider/3600)
function addZero(n){ if (n<10) return "0" + n else return n }
addZero(hour) + ":" + addZero(min) + ":" + addZero(sec)

