Answered
How to turn off Smart Quotes script in InDesign?
Hi
Someone recently helped me with this script to turn off 'smart reflow' in my preferences. Is it possible to do the same to turn off 'Smart Typographer's Quotes'?
Thanks
#targetengine "smartText";
app.addEventListener("afterOpen", changeSmartText);
function changeSmartText(e) {
if (e.parent.constructor.name == "LayoutWindow") {
e.parent.parent.textPreferences.smartTextReflow = false;
alert("This document's Smart Text Reflow has been set to: " + e.parent.parent.textPreferences.smartTextReflow)
}
};
<Title renamed by moderator>
