Hi,
I have a bit of code in a flash assignment I am doing for uni and I have come across a 1060 warning that Image is no longer supported.
Code:
for each(var img:Object in images)
{
	var image:Image = new Image(img.image1, img.image2);
	image.x = img.x;
	image.y = img.y;	
	addChild(image);
}
Thats the code I am having trouble with. Any help would be appreciated.
Cheers
Hynesy