I have a tile list that loads images from a folder within the app.

When i load images with a transparent background it gives the image a white background is there any way to get the image to be transparent?

Thanks!

I'm adding the images from a list of images i loop through

var y:Image = new Image(); 
y.height = 100;
y.width = 100;
y.id =  list[i].MID;
y.source = (list[i].vchImagePath);
y.name = (list[i].vchName); 
theArray.addItem(y);
link|improve this question

the images are they PNG or other extention – mgraph Dec 29 '11 at 13:56
the images are transparent PNG's – SeanStick Dec 29 '11 at 14:25
what method are you using to load image ? do you convert them to bitmapdata – mgraph Dec 29 '11 at 14:28
I have added the code in the question. Thanks! – SeanStick Dec 29 '11 at 14:40
i don't see where the problem come from maybe you should add maintainAspectRatio = false; or remove width & height – mgraph Dec 29 '11 at 14:56
feedback

1 Answer

If you use an itemRenderer in your list, you can set the autoDrawBackground property to false.

Dany

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.