开发者

how to display simple html string with <img> <p> tag in flash builder 4?

开发者 https://www.devze.com 2023-02-04 06:11 出处:网络
hello <img 开发者_运维知识库src=\"http://i1.sinaimg.cn/home/deco/2009/0330/logo_home.gif\" />worldFlex has a htmlText in Text Component.

hello <img 开发者_运维知识库src="http://i1.sinaimg.cn/home/deco/2009/0330/logo_home.gif" />world


Flex has a htmlText in Text Component.

<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" 
    backgroundGradientColors="[#FFFFFF, #FFFFFF]">
    <mx:Text width="100%" color="blue" fontStyle="italic" fontSize="14">
        <mx:htmlText>
            <![CDATA[
                <img src="http://i1.sinaimg.cn/home/deco/2009/0330/logo_home.gif" />world
            ]]>
        </mx:htmlText>
    </mx:Text>
</mx:Application>

like this to display html.

0

精彩评论

暂无评论...
验证码 换一张
取 消