Setting sourceText as well as kerning (character attribute)
Hi,
I've got a Text layer which is taking it's value from another layer "Rate" - first line of the code.
I want to be able to kern the characters of this individually (using sliders) but when I add in the code (lines 2 onwards), it no longer takes the "Rate" value but reverts to the original value
I'm not sure why it is happening. I think I need to redefine the sourceText value but I'm not sure how to do that.
Thanks in advance!
thisComp.layer("Rate").text.sourceText.value;
text.sourceText.style
// 1st character kerning //
.setKerning(thisComp.layer("CONTROL").effect("1st Kerning multiplier")("Slider"), 1)
// 2nd character kerning //
.setKerning(thisComp.layer("CONTROL").effect("2nd Kerning multiplier")("Slider"), 2)
// 3rd character kerning //
.setKerning(thisComp.layer("CONTROL").effect("3rd Kerning multiplier")("Slider"), 3)
