2012年9月15日

as3 htmlText常用标签

摘要: <a> 说明:建立超链接属性:href 超链接使用的网址URL。target 连接打开的目标。例如:txt.htmlText = "<a href='http://fdbinghen.com' target='_blank'>风冻冰痕</a>";<b>说明:文字粗体显示。例如:txt.htmlText = "<b>风冻冰痕</b>";<br>说明:不分段换行。例如:txt.htmlText = "风冻<br>冰痕&qu 阅读全文

posted @ 2012-09-15 12:40 防空洞123 阅读(2092) 评论(0) 推荐(0) 编辑

as3 用StyleSheet css 设置文本样式

摘要: import flash.text.TextField;import flash.text.StyleSheet;var txt:TextField = new TextField();addChild(txt);var style:StyleSheet = new StyleSheet();style.setStyle(".username", {color: "#FF0000",fontWeight:"bold"});txt.styleSheet = style;txt.htmlText = "<span clas 阅读全文

posted @ 2012-09-15 11:53 防空洞123 阅读(958) 评论(0) 推荐(0) 编辑

导航