FLEX Builder compiler arguments 的设置
【编译参数】
-default-background-color int
-default-frame-rate int
-default-size width height
设置SWF的背景色,帧频与宽高,这个也可以通过元标签设置,诸如
[SWF(width="720",height="560",backgroundColor="#000000")]
-default-script-limits
-max-recursion-depth
-max-execution-time
定义应用脚本程序的执行限制,最大代码条目,最大递归层次,最大的执行时间
-debug=true|false
是否生成调试用SWF,调试用SWF会比一般的SWF要大。在Flex Builder中,默认为true,而在以Release方式时发布时,默认为false,所以用Release发布的文件会被debug时小很多。
-optimize=true|false
优化as,减少文件大小,增加性能,默认为true。
-strict=true|false
是否采用严谨模式
-use-network=true|false
可读取网络或者可读取本地文件
-includes class [...]
强制导入类,不管是否曾使用过这个类
-include-libraries library [...]
强制导入SWC文件中的所有类,不管是否曾使用过这个类
-frames.frame label class_name [...]
将类绑定label标记的帧上
【后台相关】
-context-root string
-context-path string
设置{context.root}的值,这个数值被应用在flex-services.xml,flex-config.xml内,是flash Remoting的必要参数,以确认服务端目录。也可通过设置Flex Server内的context root。
-services filename
指定services-config.xml的位置,用于Flash Remoting。也可以通过新建项目的选项卡设置。
【调试时信息】
-benchmark=true|false
是否输出编译时期的详细信息,默认为true
-warnings=true|false
是否显示警告信息
-show-unused-type-selector-warnings=true|false
是否显示未使用CSS的警告信息
-show-binding-warnings=true|false
是否显示绑定失效信息
【其他】
-keep-generated-actionscript=true|false
保留编译MXML文件过程中的AS文件
分享到:
相关推荐
Add extra arguments to Flex Compiler: right-click on bbb-air-client project Properties-Flex Compiler add the following as Additional compiler arguments: -locale=en_US,pt_BR -source-path=./locale/{...
如果你使用的是Flex Builder或Flash Builder,可以在项目属性中找到“Flex Compiler”选项,然后在“Additional compiler arguments”(额外的编译器参数)里输入“-locale=zh_CN”。 4. 引用资源:在你的MXML或...
- **services-config.xml配置文件**:通过修改Flex项目的属性,在“Additional compiler arguments”中指定services-config.xml配置文件的路径。可以指向.NET项目中的“WEB-INF/flex”目录下的services-config.xml...
由于默认情况下Flex会尝试从互联网上查找XML文件,因此我们需要告诉Flex Builder这个文件是本地文件。这可以通过以下步骤完成: 1. 在菜单栏中选择 **Project** > **Properties** > **Flex Compiler**。 2. 在...
- 在右侧找到 `Additional compiler arguments` 部分,可以添加如下参数来修改 SWF 的尺寸和背景颜色: - 尺寸: `-swf-size <width>x<height>` (例如 `-swf-size 800x600`) - 背景颜色: `-background-color ...
1. **改变SWF尺度、背景颜色和帧频**:在Adobe Flash Builder或Flex SDK的项目设置中,可以通过在“ActionScript Compiler”下的“Additional compiler arguments”字段添加特定命令来实现。例如,使用`-default-...