Quantcast
Channel: Adobe Community: Message List
Viewing all articles
Browse latest Browse all 92406

Re: Highlight the fonts applied manually

$
0
0

Hi Hurix,

 

Try this. It will apply "Red" color to the text which has font override.

 

var paras = app.activeDocument.stories.everyItem().paragraphs.everyItem().getElements();

app.activeDocument.colors.add({name:"Red", model:ColorModel.process, colorValue:[15,100,100,0]});

for(var i =0;i<paras.length;i++)

{

       for(var j =0;j<paras[i].words.length;j++)

       {

           if(paras[i].words[j].appliedFont.fullName != paras[i].appliedParagraphStyle.appliedFont.fullName)

           {

                paras[i].words[j].fillColor = app.activeDocument.swatches.item("Red");

               }

           }

    }

 

Regards,

Chinna


Viewing all articles
Browse latest Browse all 92406

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>