开发者

Actionscript 3, loading image from web

I'm trying to load an external image into my air app.

CODE HERE (http开发者_开发百科://pastie.org/2314164)

xml.artist_pic is pointing to image example: http://www.example.com/image.jpg GLOBAL.skin.albumArt is a movie clip which inside has bitmap.

What am I doing wrong?


You need to use the Loader class instead of 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);
}
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜