ActionScript 3 as3中的动态HTML / XML链接

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ActionScript 3 as3中的动态HTML / XML链接相关的知识,希望对你有一定的参考价值。

var a:Object = new Object();
a.color = "#fd0e08";
a.fontWeight = ("bold");
a.fontSize = 20;

var aHover:Object = new Object();
aHover.fontSize = 20;
aHover.color = "#cccccc";

var style:StyleSheet = new StyleSheet();
style.setStyle("a", a);
style.setStyle("a:hover", aHover);

textfeed0.styleSheet = style;

var xmlLoader:URLLoader = new URLLoader();
var xmlData:XML = new XML();

xmlLoader.addEventListener(Event.COMPLETE, LoadXML);
xmlLoader.load(new URLRequest("http://www.associatedcontent.com/rss/rss_process.shtml?content_type=rover_feature&content_type_id=721602"));

function LoadXML(e:Event):void {
xmlData=new XML(e.target.data);
Parserover_feature(xmlData);
}

function Parserover_feature(rover_feature:XML):void {
textfeed0.htmlText = "<a href=\"http://www.yahoo.com\">"+rover_feature.items.item.title[0]+"</a>";
}

以上是关于ActionScript 3 as3中的动态HTML / XML链接的主要内容,如果未能解决你的问题,请参考以下文章

ActionScript 3 AS3动态文本粗体格式

ActionScript 3 AS3:在ActionScript中使用E4X生成动态XML

ActionScript 3 AS3中的AssociativeArray

ActionScript 3 AS3中的getURL

ActionScript 3 AS3中的模糊滤镜

ActionScript 3 跟踪AS3中的对象