views:

74

answers:

2

Hi,

I know that the question may seem very easy. I am trying to display an image on canvas. I need to do it in AS, and also I need to locate image in specific coordinates.

Could you please suggest how to do it

+1  A: 

just an image at a specific location within a canvas:

      var myImage:Image = new Image();
  myImage.source =  "image1.png";
  myImage.x = 100;
  myImage.y = 100;
  myCanvas.addChild(myImage);
Jon.Stromer.Galley
A: 

Check out the dataToLocal() method.

James Ward