-
Controlling the audio in a slider
I relatively know how to setup a group of layers to be attached to slider so they can be visible on and off. Something like the following on the opacity value.
val=Math.round(comp(“Standard Intro”).layer(“Control Layer”).effect(“Slider Control”)(“Slider”));
if (val>1 && val<3)
100
else
0
If I have a bunch of audio clips lined up would it be something like this on the Audio Levels
val=Math.round(comp(“Standard Intro”).layer(“Control Layer”).effect(“Slider Control”)(“Slider”));
if (val>1 && val<3)
0.00
else
-192.00