我正在尝试在 flash builder 中使用图形 api。
1)默认应用程序是“Main.as”(不是 Main.mxml) 2)应用程序使用 Spark(不是 mx 包)
我正在查看的是使用函数 addElement 在以下代码中显示形状
这是代码:
package app
{
import flash.display.Shape;
import flash.display.Sprite;
import spark.core.SpriteVisualElement;
public class Main
{
public function Main()
{
var shape:Shape =new Shape() ;
shape.graphics.lineStyle(3,0xff);
shape.graphics.moveTo(0,0);
shape.graphics.lineTo(300,300);
var sve:SpriteVisualElement = new SpriteVisualElement() ;
sve.addChild(shape);
//***********************************
addElement( sve) ;// <<< Compiler error here
//***********************************
}
}
}