如何提取AS3中嵌入圖像的寬度和高度,而不是明確指出尺寸? 這裏就是我想要做的事:如何提取AS3中嵌入圖像的寬度和高度?
[Embed(source="../../lib/spaceship.png")]
private var ShipImage:Class;
private var ship_image:BitmapData;
public function Ship(x:int, y:int, width:Number, height:Number)
{
super(x, y, 36, 64);
ship_image = new ShipImage().bitmapData;
speed = new Point(0, 0);
}
由於超級應該構造我怎麼了解事前尺寸範圍內的一切之前,叫什麼名字?我使用FlashDevelop作爲我的IDE。