-
How to Link Value of a Keyframe to a Slider Control without affecting values of other keyframes
I’m designing a lowerthird for one of our brands.
I have 3 keyframes in the X position of an object.
I need to link the 3rd keyframe to a Slider Control so the final position of the object can be adjusted without affecting the other keyframes.
Eventually this will be a essential graphics element for premiere and I’d like my team to be able to make this adjustment to the object.
Everything I’ve tried has caused the values of all the keyframes to change with it.
I’m thinking the expression will look something like this:
if ( key(index) = 3 ) {
key(index).value = effect(“Slider Control”)(“Slider”);
}else
key(index).value = valueI know the syntax isn’t quite right but hopefully it gives a decent idea of what I’m looking for.
Any advice is much appreciated. Thanks!