Have an account? Sign in
"*" indicates required fields
You agree that CreativePro Network may send you emails, including the newsletter selections above. You can unsubscribe at any time.
By signing in, you agree to our Terms of Use and acknowledge our Privacy Notice.
New user? Create an account
By signing in, you agree to our Terms of Use and acknowledge our Privacy Notice.
Thanks Gert, but that looks like the script that was referenced in my link — and it wasn’t working for me.
There has been a reply in the original link I posted that is working just fine. For anyone else who might need it as well:
Save the following as “Turn ligatures off.jsx”
var scriptName = “Turn ligatures off”,
doc;
PreCheck();
//===================================== FUNCTIONS ======================================
function Main() {
var allParStyles = doc.paragraphStyles;
for (i = 1; i < allParStyles.length; i++) {
allParStyles[i].ligatures = false;
allParStyles[i].hyphenation = false;
}
}
//——————————————————————————————————————————————————–
function PreCheck() {
if (app.documents.length == 0) ErrorExit(“Please open a document and try again.”, true);
doc = app.activeDocument;
if (doc.converted) ErrorExit(“The current document has been modified by being converted from older version of InDesign. Please save the document and try again.”, true);
if (!doc.saved) ErrorExit(“The current document has not been saved since it was created. Please save the document and try again.”, true);
Main();
}
//——————————————————————————————————————————————————–
function ErrorExit(error, icon) {
alert(error, scriptName, icon);
exit();
}
//——————————————————————————————————————————————————–
Thanks David,
Yeah most of our work doesn’t need styles and so we generally don’t waste our time with those (except for a different client for whom we do catalogues for and so it’s beneficial in that one.)
I did find out elsewhere today in this search about the find/change and that was news to me. I never knew you could change styles and such with that feature.
This site uses cookies, but not the kind you eat. We use cookies to remember log in details, provide secure log in, improve site functionality, and deliver personalized content. By continuing to browse the site, you accept cookies.