반응형
MyImage.as
package comp1
{
import mx.containers.Panel;
import mx.controls.Image;
public class MyImage extends Panel{
public function MyImage(){
super();
var img:Image = new Image();
img.source = "test.jpg";
this.addChild(img);
}
}
}
넣고싶은 이미지를 import시켜놓으면 찾아갈수 있다.
design보기로 들어서 보면
좌측의 Components의 Custom에 보면 MyImage가 생긴것을 볼 수 있다. 이미지처럼 끌어다 쓰면 된다.
ImageUse.mxml
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" xmlns:ns1="comp1.*">
<ns1:MyImage x="160" y="120">
</ns1:MyImage>
</mx:Application>
반응형