我正在尝试将ProxyObject转换为TextFlow,以便我可以在RichText中输出。 我正在通过http请求收到ProxyObject。
<s:HTTPService id="httpStoryDetail" url="{urlDetails}"/>
服务使用输出来输出php脚本,如下所示:
<user>username</user>
<story><p>Here some text which has <b>html</b> tags.<p><story>
我正在尝试获取故事,因此我可以将其绑定到RichText但需要TextFlow。 我怎么做?或者有更好的选择吗?
由于
答案 0 :(得分:0)
您需要从HTTPService获取字符串,例如,您获得字符串&#34; <p>Here some text which has <b>html</b> tags.<p>
&#34;
之后,您将能够将此字符串设置为RichText。
//Must be your string
var richText:String = "<p fontSize=\"10\">A small normal paragraph</p>" +
"<p fontSize=\"14\" fontWeight=\"bold\">A medium bold paragraph</p>" +
"<p fontSize=\"18\">A large<span fontStyle=\"italic\">mixed-text paragraph</span></p>"
myRichText.textFlow = TextFlowUtil.importFromString(
richText, WhiteSpaceCollapse.PRESERVE);