很簡單的問題一個XML/RSS的屬性,我有這樣的:(只有完整的RSS文件的一部分)我無法讀取從ActionScript 3的(閃光燈)
<item>
<title>Ok, de regalo de San Valentin me pueden dar un viaje a Playa del Carmen! Digo, entre todos lo pagan! No?? #SoñarNoCuestaNada</title>
<link>http://twitter.com/glenyvalente/statuses/37202068301295616</link>
<description>Ok, de regalo de San Valentin me pueden dar un viaje a <b>Playa</b> del Carmen! Digo, entre todos lo pagan! No?? <a href="http://search.twitter.com/search?q=%23So%C3%B1arNoCuestaNada" onclick="pageTracker._setCustomVar(2, 'result_type', 'recent', 3);pageTracker._trackPageview('/intra/hashtag/#SoñarNoCuestaNada');">#SoñarNoCuestaNada</a></description>
<pubDate>Mon, 14 Feb 2011 17:30:38 +0000</pubDate>
<guid>http://twitter.com/glenyvalente/statuses/37202068301295616</guid>
<author>[email protected] (Gleny Valente)</author>
<media:content type="image/jpg" width="48" url="http://a1.twimg.com/profile_images/1225905511/S5030401_normal.JPG" height="48"/>
<google:image_link>http://a1.twimg.com/profile_images/1225905511/S5030401_normal.JPG</google:image_link>
<google:location>Venezuela</google:location>
<twitter:metadata>
<twitter:result_type>recent</twitter:result_type>
</twitter:metadata>
</item>
和我讀到<title>
和<pubDate>
使用:
function rssLoaded(evt:Event):void {
rssXML = XML(rssLoader.data);
for(var item:String in rssXML.channel.item) {
fechas.push(rssXML.channel.item[item].pubDate.substr(0, 16));
titulos.push(rssXML.channel.item[item].title);
trace(rssXML.channel.item[item].media:content.attributes.url);
total=total+1;
}
trace(total);
}
但是,trace(rssXML.channel.item[item].media:content.attributes.url);
永遠是空的,所以我怎麼能讀取標籤<media>
屬性網址 ???謝謝!
你好,這給了我一個錯誤:場景1,圖層 '圖層1',第1幀,第19行\t 1084:語法錯誤:冒號之前rightparen期待。 – DomingoSL 2011-02-14 21:46:21