flex中嵌入html代码–超级链接例子
2010-07-14 13:45codeif.com
flex中添加超链接,可以使用
<?xml version="1.0" encoding="utf-8"?> <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute"> <mx:Text> <mx:htmlText> <![CDATA[ <a href="http://www.codeif.com" target="_blank">codeif.com</a> ]]> </mx:htmlText> </mx:Text> </mx:Application>
