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