-
Timecode Expression
Just because someone has asked a question and it’s made me think.
How can you use an expression on time use the timecode to trigger.
eg
If (time < 2) 100 else 0;
if I do frames this also works
if (time < framesToTime(65)) 100 else 0;
But how can you use the timecode to do the same
if (time < timeToTimecode(00:00:02:00)) 100 else 0;
This doesn’t work and I can’t fathom how to do it another way. Surely if it works for time and frames. It can do timecode.