Hi there,
Is it possible to change the value within “” with a slider?
I’ve got a layer that has three effects (Red Giant’s Sound Keys). Inside each of these effects, there are three values that are of interest to me.
I’d like to write an expression (using sliders), where I can toggle between the three different effects, and within that, toggle between those three different values.
Here is the string I’m trying to alter:
thisComp.layer(“SOUNDKEYS”).effect(“Sound Keys 3”)(“Output 1”)
I was hoping that I could select the number 3, for example, and pick-whip that to a slider, but it didn’t work.
Then I decided to use what someone suggested earlier and do something like
S=effect(“SOUNDKEYS #”)(“Slider”);
thisComp.layer(“SOUNDKEYS”).effect(“Sound Keys S”)(“Output 1”)
But the result is that “Sound Keys S” is missing or does not exist.
Hope that makes sense…
I’m trying to avoid going into the expression and manually changing the numeric values, since I’d have to do that countless times.
Thanks!