Question
How do I check in a script that Overprint Preview has already been enabled?
In Adobe Illustrator, is there a way to check the Overprint Preview status (it looks like Overprint Preview is a property of the document) through a script? I have tried catching an error if I try to re-enable it, however that does not work.
try {
app.executeMenuCommand('ink');
alert("on");
} catch (e) {
alert("already enabled");
}
