Adobe 65009333 Scripting Guide - Page 86

Working with XML tables, To use this method

Page 86 highlights

XML Adding XML elements to a story 86 myPara1Style.firstLineIndent = 0; var myBodyTextStyle = myDocument.paragraphStyles.add(); myBodyTextStyle.name = "body text"; myBodyTextStyle.pointSize = 12; myBodyTextStyle.firstLineIndent = 24; //Create a character style. var myCharacterStyle = myDocument.characterStyles.add(); myCharacterStyle.name = "Emphasis"; myCharacterStyle.fontStyle = "Italic"; //Add XML elements and apply paragraph styles. var myRootXMLElement = myDocument.xmlElements.item(0); var myXMLElementA = myRootXMLElement.xmlElements.add(myHeading1XMLTag); myXMLElementA.contents = "Heading 1"; myXMLElementA.insertTextAsContent("\r", XMLElementPosition.afterElement); myXMLElementA.applyParagraphStyle(myHeading1Style, true); var myXMLElementB = myRootXMLElement.xmlElements.add(myPara1XMLTag); myXMLElementB.contents = "This is the first paragraph in the article."; myXMLElementB.insertTextAsContent("\r", XMLElementPosition.afterElement); myXMLElementB.applyParagraphStyle(myPara1Style, true); var myXMLElementC = myRootXMLElement.xmlElements.add(myBodyTextXMLTag); myXMLElementC.contents = "This is the second paragraph in the article."; myXMLElementC.insertTextAsContent("\r", XMLElementPosition.afterElement); myXMLElementC.applyParagraphStyle(myBodyTextStyle, true); var myXMLElementD = myRootXMLElement.xmlElements.add(myHeading2XMLTag); myXMLElementD.contents = "Heading 2"; myXMLElementD.insertTextAsContent("\r", XMLElementPosition.afterElement); myXMLElementD.applyParagraphStyle(myHeading2Style, true); var myXMLElementE = myRootXMLElement.xmlElements.add(myPara1XMLTag); myXMLElementE.contents = "This is the first paragraph following the subhead."; myXMLElementE.insertTextAsContent("\r", XMLElementPosition.afterElement); myXMLElementE.applyParagraphStyle(myPara1Style, true); var myXMLElementF = myRootXMLElement.xmlElements.add(myBodyTextXMLTag); myXMLElementF.contents = "This is the second paragraph following the subhead."; myXMLElementF.insertTextAsContent("\r", XMLElementPosition.afterElement); myXMLElementF.applyParagraphStyle(myBodyTextStyle, true); var myXMLElementG = myRootXMLElement.xmlElements.add(myBodyTextXMLTag); myXMLElementG.contents = "Note:"; myXMLElementG = myXMLElementG.move(LocationOptions.atBeginning, myXMLElementF) myXMLElementG.insertTextAsContent(" ", XMLElementPosition.afterElement); myXMLElementG.applyCharacterStyle(myCharacterStyle, true); // Associate the root XML element with the story. myDocument.stories.item(0).placeXML(myRootXMLElement); Working with XML tables InCopy automatically imports XML data into table cells when the data is marked up using HTML standard table tags. If you cannot or prefer not to use the default table mark-up, InCopy can convert XML elements to a table using the convertElementToTable method. To use this method, the XML elements to be converted to a table must conform to a specific structure. Each row of the table must correspond to a specific XML element, and that element must contain a series of XML elements corresponding to the cells in the row. The following script fragment shows how to use this method (for the complete script, see ConvertXMLElementToTable). The XML element used to denote the table row is consumed by this process.

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88

XML
Adding XML elements to a story
86
myPara1Style.firstLineIndent = 0;
var myBodyTextStyle = myDocument.paragraphStyles.add();
myBodyTextStyle.name = "body text";
myBodyTextStyle.pointSize = 12;
myBodyTextStyle.firstLineIndent = 24;
//Create a character style.
var myCharacterStyle = myDocument.characterStyles.add();
myCharacterStyle.name = "Emphasis";
myCharacterStyle.fontStyle = "Italic";
//Add XML elements and apply paragraph styles.
var myRootXMLElement = myDocument.xmlElements.item(0);
var myXMLElementA = myRootXMLElement.xmlElements.add(myHeading1XMLTag);
myXMLElementA.contents = "Heading 1";
myXMLElementA.insertTextAsContent("\r", XMLElementPosition.afterElement);
myXMLElementA.applyParagraphStyle(myHeading1Style, true);
var myXMLElementB = myRootXMLElement.xmlElements.add(myPara1XMLTag);
myXMLElementB.contents = "This is the first paragraph in the article.";
myXMLElementB.insertTextAsContent("\r", XMLElementPosition.afterElement);
myXMLElementB.applyParagraphStyle(myPara1Style, true);
var myXMLElementC = myRootXMLElement.xmlElements.add(myBodyTextXMLTag);
myXMLElementC.contents = "This is the second paragraph in the article.";
myXMLElementC.insertTextAsContent("\r", XMLElementPosition.afterElement);
myXMLElementC.applyParagraphStyle(myBodyTextStyle, true);
var myXMLElementD = myRootXMLElement.xmlElements.add(myHeading2XMLTag);
myXMLElementD.contents = "Heading 2";
myXMLElementD.insertTextAsContent("\r", XMLElementPosition.afterElement);
myXMLElementD.applyParagraphStyle(myHeading2Style, true);
var myXMLElementE = myRootXMLElement.xmlElements.add(myPara1XMLTag);
myXMLElementE.contents = "This is the first paragraph following the subhead.";
myXMLElementE.insertTextAsContent("\r", XMLElementPosition.afterElement);
myXMLElementE.applyParagraphStyle(myPara1Style, true);
var myXMLElementF = myRootXMLElement.xmlElements.add(myBodyTextXMLTag);
myXMLElementF.contents = "This is the second paragraph following the subhead.";
myXMLElementF.insertTextAsContent("\r", XMLElementPosition.afterElement);
myXMLElementF.applyParagraphStyle(myBodyTextStyle, true);
var myXMLElementG = myRootXMLElement.xmlElements.add(myBodyTextXMLTag);
myXMLElementG.contents = "Note:";
myXMLElementG = myXMLElementG.move(LocationOptions.atBeginning, myXMLElementF)
myXMLElementG.insertTextAsContent(" ", XMLElementPosition.afterElement);
myXMLElementG.applyCharacterStyle(myCharacterStyle, true);
// Associate the root XML element with the story.
myDocument.stories.item(0).placeXML(myRootXMLElement);
Working with XML tables
InCopy automatically imports XML data into table cells when the data is marked up using HTML standard
table tags. If you cannot or prefer not to use the default table mark-up, InCopy can convert XML elements
to a table using the
convertElementToTable
method.
To use this method, the XML elements to be converted to a table must conform to a specific structure.
Each row of the table must correspond to a specific XML element, and that element must contain a series
of XML elements corresponding to the cells in the row. The following script fragment shows how to use
this method (for the complete script, see ConvertXMLElementToTable). The XML element used to denote
the table row is consumed by this process.