🖨️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'
}

Slider Controls Value and the expression will output digital clock format

-Current Comp Time

Display current time of comp.

-Current Time

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

-Current Frame

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

-Display Timecode, Frames & FPS

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

Displays RGB Code in Source Text

-Display Hex Code

Displays Hex Code in Source Text

Refrence

-Display Nearest Marker Comment

Displays text of nearest Marker

Last updated