Raimonds
Raimonds

Reputation: 2606

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?

Upvotes: 0

Views: 496

Answers (1)

Rob Fox
Rob Fox

Reputation: 5581

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);
}

Upvotes: 4

Related Questions