Search found 2 matches
- November 6th, 2008, 11:13 am
- Forum: Expression Discussion
- Topic: Countdown expression help
- Replies: 2
- Views: 10620
Re: Countdown expression help
Thanks Dan, this worked great. I linked the rate to a slider and was able to control the speed just as I liked too.
- November 5th, 2008, 1:33 pm
- Forum: Expression Discussion
- Topic: Countdown expression help
- Replies: 2
- Views: 10620
Countdown expression help
I'm using Dan Ebbert's script: rate = -2; clockStart = 3604.999; function padZero(n){ if (n < 10) return "0" + n else return "" + n } clockTime = clockStart + rate*(time - inPoint); if (clockTime < 0){ sign = "-"; clockTime = -clockTime; }else{ sign = ""; } t ...