-
Expression: Jump to marker, when counter turns zero
I have a marker set to a particular position in timeline. I’m running a counter as follows:
Now I need to jump to a marker(“End”), when the clocktime turns 0. Can this be done using expression. If yes I need to post it under which property. I’m running the counter under sourceText.
rate = -1;
clockStart = parseInt(thisComp.layer(1).text.sourceText.value);function padZero(n){
if (n < 10) return "0" + n else return "" + n
}clockTime = Math.max((clockStart-1*(time-inPoint)),0) ;