Re: Countdown numbers expression? by Kevin Camp on Aug 1, 2008 at 11:17:04 pm
something like this will countdown each frame:
t = time / thisComp.frameDuration;
value - t;
just create a text layer, enter a number (say '100'), then paste that expression into the source text expression field, and it will count down by 1 for every frame. you could add a multiplier to the 't' variable to have it count down differently:
n = 10;
t = n * time / thisComp.frameDuration;
value - t;