-
getting index number for effects on a layer
Hello,
I have lots of Circle effects applied to an adjustment layer. I want to write an expression that I can apply to each circle, that will look at it’s radius and change it’s opacity based on that. Is there an expression that I can use to say “look at THIS effect’s radius”?
Here is what I have so far:
x = effect(“Circle” + ” ” + (index + 1))(“Radius”);
if (x == 0){
0;
}else{
100;
}This is taking the index of the layer, not of the expressions on that layer, so it is not doing what I want. Any one have any thoughts about this? Thank you so much!
x = effect("Circle" + " " + (index + 1))("Radius");
if (x == 0){
0;
}else{
100;
}