Answered
Hide all text layers in document
Is it possible to hide all text layers in a multi-page document (so I can export a copy with only the pictures)?
Is it possible to hide all text layers in a multi-page document (so I can export a copy with only the pictures)?
This would hide all of the text frames in a document:
var api=app.activeDocument.allPageItems;
var i = api.length; while (i--) if (api[i].constructor.name == "TextFrame") api[i].visible = false;
This would show them:
var api=app.activeDocument.allPageItems;
var i = api.length; while (i--) if (api[i].constructor.name == "TextFrame") api[i].visible = true;Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.