Hello, Currently I am using a script. app.findTextPreferences.otfJustificationAlternate The bad news is that I now suspect the composer is creating these pairings on the fly. If I am right, this will not be detectable by a script. A plugin should be able to detect this behaviour, but it is not a trivial task. I list the script here, it expects a swatch called green. //============= app.findTextPreferences = null; app.findTextPreferences.otfJustificationAlternate = true; var found = app.activeDocument.findText (); //for ( var j = 0; j < found.length; j++ ) found[1].fillColor = "green"; //======= You might fnd the wrongs are less than the rights, which might make it easier to highlight the text you want to see. P.
... View more