Time clock/Countdown effect issue. Ahead of real time
so put time icon in song can have little more visual appearance. 1 issue...it's few seconds ahead of how long song is. put in code
amtofdigits = 2;
seconds = math.round( time % 59 );
minutes = math.floor( time / 59 );
function addleadingzeroes( v ){
for( = 0; < math.abs( amtofdigits - (v + "").length ); i++)
v = "0" + v;
return v;
} addleadingzeroes(minutes) + ":" + addleadingzeroes(seconds)
notice song on 3 minutes time says 3:03
well, 59 not 29.97 nor 59.94, not? math crooked. fill in correect values.
mylenium
More discussions in After Effects
adobe
Comments
Post a Comment