Copy link to clipboard
Copied
Can I remove layer(s) from multiple comps at once? Script maybe, acts on the selected layer(s) name(s)
With the previous script, if you replace this line:
app.project.item(i).layer(j).blendingMode = BlendingMode.COLOR;
with this, I think it will do what you want:
app.project.item(i).layer(j).remove();
Copy link to clipboard
Copied
With the previous script, if you replace this line:
app.project.item(i).layer(j).blendingMode = BlendingMode.COLOR;
with this, I think it will do what you want:
app.project.item(i).layer(j).remove();
Copy link to clipboard
Copied
ah great, thank you1