Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

Paragraph styles script

New Here ,
Oct 18, 2016 Oct 18, 2016

Hi I was wondering if anyone could help me? I am looking for a script that would make several paragraph styles changes in one script. The following things i need to change are -

Ligatures - OFF

Contextual Alternatives - OFF

Paragraph Styles set to 'single line paragraph'.

I also need to choose a specific colour, in this case 'Text Black' and set the overprint to - ON

Many thanks

TOPICS
Scripting
445
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Guide ,
Oct 18, 2016 Oct 18, 2016

For

Ligatures - OFF

Contextual Alternatives - OFF

Paragraph Styles set to 'single line paragraph'.

use this

var myDoc = app.activeDocument;

myParagraphs = myDoc.paragraphStyles;

for(var i=1; i<myParagraphs.length; i++)

{

  myParagraphs.ligatures = false;

  myParagraphs.otfContextualAlternate=false;

  myParagraphs.composer = "Adobe Single-line Composer"

}

alert ("Process Completed!!! Plz Check");

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Oct 27, 2016 Oct 27, 2016

Really sorry, I've only just seen this. Looks like its working. Thank you!!!

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Guide ,
Oct 31, 2016 Oct 31, 2016

If it works, please mark as correct answer

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Guru ,
Oct 31, 2016 Oct 31, 2016

Don't worry tpk, she'll probably see your reply in another week or 2 and mark it correct then.

Some people only check there mail on a monthly basis.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Guide ,
Oct 31, 2016 Oct 31, 2016

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Oct 31, 2016 Oct 31, 2016
LATEST

Some much more … or never! 

(^/)

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines