Creative Communities of the World Forums

The peer to peer support community for media production professionals.

Activity Forums Adobe After Effects Expressions Countdown Timer in AE

  • Julian Sixx

    May 22, 2006 at 6:12 pm

    Hi
    use this expression for the source text

    hr = 00;
    min = 00;
    sec = 0;

    d = new Date((((hr*60)+min)*60 + sec + time)*1000);
    s = d.toGMTString();
    s.substr( -12, 8 )

  • Tony Bartolucci

    May 22, 2006 at 6:39 pm

    I believe there is actually a Time effect that will count down…

  • Joe Mcarthur

    May 22, 2006 at 7:54 pm

    i need it to count down from 24:00:00 . . . . this one starts at 00:00:00

  • Sam Moulton

    May 22, 2006 at 8:03 pm

    just did this

    add a slider to a blank source text layer and then add this expression:

    timeToTimecode(t = effect(“Slider Control”)(“Slider”)+ thisComp.displayStartTime, timecodeBase = 60, isDuration = false)

    Animate the slider 1400.00 will give you 00:24:00:00 then just add a mask to remove the first two digits. because you change the timecode base to 60 you end up with a timer that will count in whole seconds. .1 on the slider = 6 seconds.

  • Sam Moulton

    May 22, 2006 at 8:18 pm

    you can also use this expression with a slider to make a hrs:min:sec:1/100 timer bu masking out the top dot in the last column

    timeToTimecode(t = effect(“Slider Control”)(“Slider”), timecodeBase = 100)

    just took the basic expression from the global properties and changed the timecode base and added a slider to change the number.

We use anonymous cookies to give you the best experience we can.
Our Privacy policy | GDPR Policy