I'm not sure what you're doing with the slider, but I think this is all you need for the mouth: aud = thisComp.layer("Audio Amplitude").effect("Both Channels")("Slider); y = linear(aud,0,36,1492,1547); [1001.5,y] If you already have the mouth positioned at [1001.5,1492], you could just do this: aud = thisComp.layer("Audio Amplitude").effect("Both Channels")("Slider); y = linear(aud,0,36,0,55); value + [0,y] Dan
... View more