Answered
How do I turn off ligatures in an entire document?
I know that I can turn off ligatures in a story or in a paragraph style, but is there a way to universally turn off ligatures?
Please & Thanks!
I know that I can turn off ligatures in a story or in a paragraph style, but is there a way to universally turn off ligatures?
Please & Thanks!
I use this script (made by Kasyan Servetsky)
var myDoc = app.activeDocument;
var myParStyles = myDoc.allParagraphStyles;
for (i = 1; i < myParStyles.length; i++) {
myParStyles.ligatures = false;
myParStyles.hyphenation = false;
}
Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.