, . , , "". parentStory , , . , .
, textFrame, story textFrame.parentStory .
(/story): , . contents . , , - INX . , ( ) Javascript, ID - ... , , , "",.
. story.insertionPoints[-1]. , , . " "; , , , .
, data :
for (var i = 0; i < data.length; i++)
{
story.insertionPoints[-1].pointSize = 20;
story.insertionPoints[-1].contents = data[i].heading + "\r";
story.insertionPoints[-1].pointSize = 10;
for (var j = 0; j < data[i].content.length; j++)
{
story.insertionPoints[-1].contents = data[i].content[j] + "\r";
}
}
, pointSize . , ( "10" ).
? -
hdrStyle = app.activeDocument.paragraphStyles.item("Header");
textStyle = app.activeDocument.paragraphStyles.item("Text");
for (var i = 0; i < data.length; i++)
{
story.insertionPoints[-1].contents = data[i].heading + "\r";
story.insertionPoints[-2].appliedParagraphStyle = hdrStyle;
for (var j = 0; j < data[i].content.length; j++)
{
story.insertionPoints[-1].contents = data[i].content[j] + "\r";
story.insertionPoints[-2].appliedParagraphStyle = textStyle;
}
}
, . , "" ; . (, , ), insertionPoints[-2] .
. , , , , , script .