Paragraph Padding
I'm trying to change the padding of a paragraph using this (doesn't work):
var pf:TextLayoutFormat = new TextLayoutFormat();
pf.paddingRight = 50;
IEditManager( textFlow.interactionManager ).applyParagraphFormat(pf);
I have several paragraph, but only want to change the padding of one of them. If I do this, I can change the padding of all paragraphs (the container padding):
var pf:TextLayoutFormat = new TextLayoutFormat();
pf.paddingRight = 50;
IEditManager( textFlow.interactionManager ).applyContainerFormat(pf);
Any ideas?
