How to add HTML content to Alive pdf page through 'writeFlashHTML' function?
var markup:String = "<s:span>Z</s:span>
<s:span baselineShift="subscript">R</s:span>
<s:span> [kN]</s:span>";
rt1.textFlow = TextFlowUtil.importFromString(markup);
<s:RichText id="rt1" width="200"/>
in the code view
myPDF.setXY(160, 10);
myPDF.textStyle( new RGBColor(0), 1 );
myPDF.writeFlashHtmlText(10,rt1.textFlow.text);
I need to display this html
in to alive pdf
.using writeFlashHTML
function.Currently it is not working.