-
ANOTHER scrolling credits question
Ok, so i built this rolling credits for a project several months back. some names got added, so the “roll” is longer, but they need it to fit in the same time span. i cant figure out how to adjust the expression/layer to CHANGE THE END POINT. here is the expression i am using. i tried bumping the 4 to 4.5 but it doesnt like fractions, and 5 is too much. thanks in advance
rate = 4.; //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)];
}