Answered
Script to show/hide certain layers for all open documents
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?
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
Already have an account? Login
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.