Copy link to clipboard
Copied
Is it possible to have a script that would show one layer and hide another layer (same name in all docs) in all documents that are open?
Hello @SparrowInkDesign
You will need to fill in the layer names in the snippet below.
app.documents.everyItem().layers.itemByName("Layer Name to Show").visible = true;
app.documents.everyItem().layers.itemByName("Layer Name to Hide").visible = false;
Regards,
Mike
Copy link to clipboard
Copied
Hello @SparrowInkDesign
You will need to fill in the layer names in the snippet below.
app.documents.everyItem().layers.itemByName("Layer Name to Show").visible = true;
app.documents.everyItem().layers.itemByName("Layer Name to Hide").visible = false;
Regards,
Mike
Copy link to clipboard
Copied
Thank you Mike! Super helpful!