Reply To: Spell Check – Can I tell InDesign that 2 separate words are actually 1 word?

Home Page / Forums / General InDesign Topics (CLOSED) / Spell Check – Can I tell InDesign that 2 separate words are actually 1 word? / Reply To: Spell Check – Can I tell InDesign that 2 separate words are actually 1 word?

#62096

I'm not sure if it's possible to “Script” this – where it can pluck out the Ignored Words from the user dictionary …

How very odd. For User dictionaries you can call up lists of Added words and of Removed words, but not Ignored words!

This small script, for example, shows the list of added words per language:

x = [];
for (i=0; i<app.userDictionaries.length; i++)
x.push (app.userDictionaries[i].name+”: “+app.userDictionaries[i].addedWords.join(“; “));
alert (x.join('r'));

But there is No Such Option for the ignored words!

This article was last modified on May 1, 2012

Comments (0)

Loading comments...