Skip to main content
Inspiring
March 23, 2010
Question

xml to ITextLayoutFormat

  • March 23, 2010
  • 1 reply
  • 715 views

I need some function, that parse xml <TextLayoutFormat...../> to  TextLayoutFormat object.

sorry for english,

is exists that function in TLF API?

This topic has been closed for replies.

1 reply

Adobe Employee
March 23, 2010

There isn't one in the public API, but if you look in the code, in textLayout_conversion there's a class TextLayoutImporter. This has a set of functions for parsing the link formats. Since each link format contains a TextLayoutFormat element inside, this should have all the code you need. You can try stepping through it in the debugger by importing a file that has a link format in it.

Here's an example file to use:

<?xml version="1.0" encoding="utf-8"?>

<!-- Note that although "color" properties may be specified on input according to either "#" or "0x" syntax, on export they should always be normalized to "#"<number> -->

<flow:TextFlow xmlns:flow="http://ns.adobe.com/textLayout/2008" fontSize="14" textIndent="15" paragraphSpaceAfter="15" paddingTop="4" paddingLeft="4" fontFamily="Times New Roman">     

    <flow:p>The following excerpt is from <flow:a href="http://www.4literature.net/Nathaniel_Hawthorne/Ethan_Brand/" target="_self"><flow:linkHoverFormat><TextLayoutFormat color="0xff0000"/></flow:linkHoverFormat><flow:linkActiveFormat><TextLayoutFormat color="#00ff00" textDecoration="underline"/></flow:linkActiveFormat><flow:linkNormalFormat><TextLayoutFormat color="#0000ff"/></flow:linkNormalFormat><flow:span>Ethan Brand</flow:span></flow:a> by <flow:a href="mailto:nathaniel_hawthorne@famousauthors.com" target="_self"><flow:linkHoverFormat><TextLayoutFormat color="#0000ff"/></flow:linkHoverFormat><flow:linkActiveFormat><TextLayoutFormat color="#0000ff" lineThrough="true"/></flow:linkActiveFormat><flow:span>Nathaniel Hawthorne</flow:span></flow:a>.</flow:p>

    <flow:p><flow:span>There are many </flow:span><flow:span fontStyle="italic">such</flow:span><flow:span> lime-kilns in that tract of country, for the purpose of burning the white marble which composes a large part of the substance of the hills. Some of them, built years ago, and long deserted, with weeds growing in the vacant round of the interior, which is open to the sky, and grass and wild-flowers rooting themselves into the chinks of the stones, look already like relics of antiquity, and may yet be overspread with the lichens of centuries to come. Others, where the lime-burner still feeds his daily and nightlong fire, afford points of interest to the wanderer among the hills, who seats himself on a log of wood or a fragment of marble, to hold a chat with the solitary man. It is a lonesome, and, when the character is inclined to thought, may be an intensely thoughtful occupation; as it proved in the case of Ethan Brand, who had mused to such strange purpose, in days gone by, while the fire in this very kiln was burning.</flow:span></flow:p>

<flow:p><flow:span>The man who now watched the fire was of a different order, and troubled himself with no thoughts save the very few that were requisite to his business. At frequent intervals, he flung back the clashing weight of the iron door, and, turning his face from the insufferable glare, thrust in huge logs of oak, or stirred the immense brands with a long pole. Within the furnace were seen the curling and riotous flames, and the burning marble, almost molten with the intensity of heat; while without, the reflection of the fire quivered on the dark intricacy of the surrounding forest, and showed in the foreground a bright and ruddy little picture of the hut, the spring beside its door, the athletic and coal-begrimed figure of the lime-burner, and the half-frightened child, shrinking into the protection of his father's shadow. And when again the iron door was closed, then reappeared the tender light of the half-full moon, which vainly strove to trace out the indistinct shapes of the neighboring mountains; and, in the upper sky, there was a flitting congregation of clouds, still faintly tinged with the rosy sunset, though thus far down into the valley the sunshine had vanished long and long ago.</flow:span></flow:p>

</flow:TextFlow>

- robin

john07_ruAuthor
Inspiring
March 24, 2010

TextLayoutImporter.createDictionaryFromXML(xmlToParse):Dictionary

It's look like answer.

john07_ruAuthor
Inspiring
March 24, 2010

It's work


var importer:TextLayoutImporter= new TextLayoutImporter(null);

var opts:Object=importer.createDictionaryFromXML(markup);

var format:TextLayoutFormat= new TextLayoutFormat;

for(var prop:String in opts)

     format[prop]=opts[prop];