手动实现Image并居中显示
?
var img:Image = new Image("pic/omega.png", -200, -150);//保证图片地位点在中心,(200,150)为图片中心的偏移量,大小是图片宽高的一半,如果动态载入的话,需要addEventListener(Event.COMPLETE,yourfunction);img.x=FlexGlobals.topLevelApplication.width/2;img.y=FlexGlobals.topLevelApplication.height/2;addChildAt(img,1);
?
?
public class Image extends Sprite{public function Image(url:String, x:Number=0, y:Number=0){super();var loader:Loader=new Loader();loader.load(new URLRequest(url));loader.x=x;loader.y=y;addChild(loader);}}