🖨️Display Value

Using the sourceText to show Values you wouldn't normally be able to display.

TIME

-Countdown Timer

Slider = effect("Slider Control")("Slider");

ms = Math.floor(slider/1000);
seconds = Math.floor(slider%60);
minutes = Math.floor(slider/60);
minutes = Math.floor(slider%60)
hours = Math.floor (slider/3600)


function addZero(n) {
if(n < 10) {
return '0' + n
} else {
return n;
}
}

if (slider > 0) {
addZero(hours) + ':' + addZero(minutes) + ':' + addZero(seconds) + ':' + (ms)
} else {
'00:00'
}
circle-info

Slider Controls Value and the expression will output digital clock format

-Current Comp Time

circle-info

Display current time of comp.

-Current Time

circle-info

Displays the current clock time of the machine it is running on

-Current Frame

circle-info

Displays Current Frame, change "25" to match your frame rate

-Display Timecode, Frames & FPS

circle-info

This After Effects expression displays the current timecode, frame number, and frame rate. It includes optional checkboxes to hide each element. It calculates timecode usingtimeToTimecode and ensures compatibility even if checkboxes are absent. Updated: 17/07/24

COLOR

-Display RGB Code

circle-info

Displays RGB Code in Source Text

-Display Hex Code

circle-info

Displays Hex Code in Source Text

Refrence

-Display Nearest Marker Comment

circle-info

Displays text of nearest Marker

Last updated