Skip to content

Instantly share code, notes, and snippets.

View Nazaroni's full-sized avatar
:octocat:
R&D

Nazar Malyy Nazaroni

:octocat:
R&D
  • @duerrdental.com
  • Nufringen, Germany
  • X @Nazaroni
View GitHub Profile
@Nazaroni
Nazaroni / inPointTimecode.jsx
Created August 15, 2020 19:56
Count timecode starting base on in Point of the layer. Text Source
rate = 1;
clockStart = 0;
function addZero( n ) {
if (n<10){
return "0"+n
}
else {
return ""+n
}
}