Reply To: Painful footnote styling

#53299

1. Does this script help?

myDialog = app.dialogs.add ({name:”Style Notes”,canCancel:true});

parstyles = app.activeDocument.paragraphStyles.everyItem().name;

with (myDialog)
{
with (dialogColumns.add())
{
with (dialogRows.add())
pstyle = dropdowns.add ({stringList:parstyles, selectedIndex:0});
}
}
if (!myDialog.show())
{
myDialog.destroy();
exit(0);
}

s = app.activeDocument.paragraphStyles[pstyle.selectedIndex];
app.activeDocument.stories.everyItem().footnotes.everyItem().paragraphs.everyItem().appliedParagraphStyle = s;

2. “Include Footnotes” is an option in Find/Change … one of the itty bitty icons under the “Search” field. I believe it's on by default.

This article was last modified on July 1, 2010

Comments (0)

Loading comments...