-
Add Effect to layers with expressions erros in all comps
How to add an effect to all layers with expression errors in all comps?
I have this expression:
var effectMatchName = "ADBE Fill";
var comp = app.project.activeItem;
for(var i = 1; i <= comp.numLayers; i++){
comp.layer(i).Effects.addProperty(effectMatchName);
}