Thanks Dan,
I revised to this:
s=thisComp.layer(“Audio VO”).effect(“Both Channels”)(“Slider”)
t= linear(s,0,8,100,165);
if
(s>=1
&& time>=38
&& time <=62
)
{[t,t]
}
else
[100,100];
Depending on the layer I change the time values.
I’m not very familiar with this other writing convention you’re using, the question mark and the colon. I think I saw it once but that’s it, I’m guessing the ? means “then” and : means “else”, but I don’t see anything that means “if”
Is the old writing convention bad? Does it slow the program or something?
Thanks again.
D.