Sorry.... still new to the coding aspect of expressions...
If I pickwhip the source text to the slide expression on a Null layer, I get this as a result -
thisComp.layer("Slider").effect("Slider Control")("Slider")
I'm assuming that I have to do something like this to connect it all together -
thisComp.layer("Slider");
sl = effect("Slider Control")("Slider");
style.setFontSize(clamp(sl,20,50))
Unfortunately, I'm getting an error and I'm unsure what is throwing it. Thank you again for this help. I want to learn this better and understand it better.
In that case, it would be like this:
sl = thisComp.layer("Slider").effect("Slider Control")("Slider");
style.setFontSize(clamp(sl,20,50))