-
Linking value of single keyframe to slider control while keeping values of other keyframes
I’m working on a lower third for one of my companies brands.
I have 3 keyframes for the X position of the right portion of the lower third.
I need to link the 3rd keyframe to a slider control so the length of the lower third can be adjusted by my coworkers
using the slider control value in Premiere (eventually this will be an essential graphics element).The other 2 keyframes need to retain their current values.
Unfortunately, I don’t know expressions that well.
I’ve tried using the key(index) and numKeys properties to no avail.
I assume the end expression will be something like this:
if ( key(index) = 3) {
key(index).value = effect(“Slider Control”)(“Slider”);
} else
valueI’ve seen similar posts like this in the forum but have yet to find something that addresses this specific issue.
Thanks in advance for whatever help you provide!
if ( key(index) = 3) {
key(index).value = effect("Slider Control")("Slider");
} else
value