我只是想编译一个扩展另一个 .as 文件的 .as 文件,如下所示:
公共类 BigSquare 扩展 Square{ ... }
我进入命令行并输入:
mxmlc BigSquare.as
我得到的错误是“未找到基类 Square 的定义。”
我需要将基类 Square.as 放在哪里才能编译 BigSquare.as?
您应该将“-source-path”添加到命令行参数中,其中包含您在编译时使用的其他文件(即 Square.as)的路径。更多信息请参见:http://livedocs.adobe.com/flex/3/html/help.html?content=compilers_13.html。你打电话应该是这样的
mxmlxc -source-path "path/to/Square.as" BigSquare.as
希望有帮助。