-
Switching Opacity inside the same comp
HI
I have a composition with several images. A slider control located in an external composition allow showing one of those images by switching the opacity of the image layers. What I need is add the opacity switching control inside of the composition of the images not outside.
I need to add an Adjustment layer inside the image composition to make them independents.Thank you in advance.
This is the current expression code which I need to modify
C = comp("Scene 01");
ctrl = C.layer("CONTROL").effect("SHOW")("Slider");
L = C.layer(thisComp.name);
val = Math.round(ctrl.valueAtTime(time+L.startTime));
if (val == index) 100 else 0
