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);
}
精彩评论