我是flash开发的新手。我有一个动作脚本(3.0)代码可以使用,我试图使用mxmlc.exe进行编译
import flash.display.*;
startTest();
function startTest() {
// Create objects to other classes to start display
}
当我使用以下命令编译它时
mxmlc.exe Main.mxml
如果包含上述.as文件,我会不断收到以下错误
Error: Call to a possibly undefined method startTest.
.as文件中没有定义类或包。 请在这里提供一些意见。