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

continuous footnote rule width

Explorer ,
Mar 19, 2017 Mar 19, 2017

Copy link to clipboard

Copied

hello

i am trying to make the continuous footnotes rule width 53 mm using this :

but it does not working

Main();

function Main() {

  if (app.documents.length > 0) {

  var myDoc = app.activeDocument;

        myDoc.footnoteOptions.continuingRuleWidth   ["53 mm"];

  alert("Finished!");

  }

  else {

  alert("No continuous footnotes.");

  }

}

TOPICS
Scripting

Views

323

Translate

Translate

Report

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

correct answers 1 Correct answer

Community Expert , Mar 19, 2017 Mar 19, 2017

myDoc.footnoteOptions.continuingRuleWidth = "53 mm";

P.

Votes

Translate

Translate
Community Expert ,
Mar 19, 2017 Mar 19, 2017

Copy link to clipboard

Copied

myDoc.footnoteOptions.continuingRuleWidth = "53 mm";

P.

Votes

Translate

Translate

Report

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
Explorer ,
Mar 19, 2017 Mar 19, 2017

Copy link to clipboard

Copied

LATEST

Thank you so much

Votes

Translate

Translate

Report

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