Well, strangely enough, once you import a footage item, you actually have to loop through all the items in the project window and find it before you can add it to a comp. Something like this:
OK – I’m confused. Are you creating a new layer for each letter the way you’re doing it now, and the keying out the background of each layer? Couldn’t you do the same thing with the “Paint on Transparent” – one layer for each letter (without the keying)?
You’re pickwhipping the Audio Amplitude layer instead of one of the sliders in the layer. Pickwhipping a slider still probably won’t give you what you want. You’re probably looking for something more like this:
mult = 5.0;
y = thisComp.layer(“Audio Amplitude”).effect(“Both Channels”)(“Slider”);
value + [0,y]*mult
You’re pickwhipping the Audio Amplitude layer instead of one of the sliders in the layer. Pickwhipping a slider still probably won’t give you what you want. You’re probably looking for something more like this:
mult = 5.0;
y = thisComp.layer(“Audio Amplitude”).effect(“Both Channels”)(“Slider”);
value + [0,y]*mult