-
Altering Scrolling Credits Expression
Hello,
I found this expression below, which is great. Thank you to whoever wrote it!
The scrolling starts at the first marker and I was wondering if there is a way to let the scroll stop at a certain time or second marker. Please let me know, how to alter the expression, if it is possible.
rate = 5; //value in px/sec.
if (marker.numKeys > 0){
if (time > marker.key(1).time){
value – [0,rate*timeToFrames(time-marker.key(1).time)];
}else{
value;
}
}else{
value – [0,rate*timeToFrames(time-inPoint)];
}