Actionscript 3,从web加载图像

时间:2011-08-03 13:23:23

标签: actionscript-3 image air urlloader

我正在尝试将外部图片加载到我的空中应用程序中。

CODE HERE (http://pastie.org/2314164)

xml.artist_pic指向图片示例:http://www.example.com/image.jpg GLOBAL.skin.albumArt是一个里面有位图的影片剪辑。

我做错了什么?

1 个答案:

答案 0 :(得分:4)

您需要使用Loader类而不是URLLoader

var loader:Loader = new Loader();
loader.load(new URLRequest(url));
loader.contentLoaderInfo.addEventListener(Event.COMPLETE, imageLoaded);

function imageLoaded(e:Event):void {
   var image:Bitmap = (Bitmap)(e.target.content);
}