Skip to main content
Inspiring
March 19, 2017
Answered

continuous footnote rule width

  • March 19, 2017
  • 1 reply
  • 441 views

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.");

  }

}

This topic has been closed for replies.
Correct answer Peter Kahrel

myDoc.footnoteOptions.continuingRuleWidth = "53 mm";

P.

1 reply

Peter Kahrel
Community Expert
Peter KahrelCommunity ExpertCorrect answer
Community Expert
March 19, 2017

myDoc.footnoteOptions.continuingRuleWidth = "53 mm";

P.

Inspiring
March 19, 2017

Thank you so much