Control the Opacity delay with Slider control
Hello!
I have used the expression bellow to control the position with delay:
var P=thisComp.layer(index-1).transform.position;
var D=thisComp.layer("Adjustment Layer 1").effect("Slider Control")("Slider")*thisComp.frameDuration;
P.valueAtTime(time-D)
I'd like the same to control the Opacity. I tried the following expression, but don't work:
var T=thisComp.layer(index-1).transform.opacity;
var D=thisComp.layer("Null 1").effect("Slider Control")("Slider")*thisComp.frameDuration;
T.valueAtTime(time-D)
How can I control de Opacity Delay with Slider Control?

