在 Flex SDK 中编译扩展基类的 .as 文件

问题描述 投票:0回答:1

我只是想编译一个扩展另一个 .as 文件的 .as 文件,如下所示:

公共类 BigSquare 扩展 Square{ ... }

我进入命令行并输入:

mxmlc BigSquare.as

我得到的错误是“未找到基类 Square 的定义。”

我需要将基类 Square.as 放在哪里才能编译 BigSquare.as?

class actionscript radix mxmlc
1个回答
0
投票

您应该将“-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

希望有帮助。

© www.soinside.com 2019 - 2024. All rights reserved.