Disable warnings in Flex Builder

来源:互联网 发布:网络虚拟信用卡 编辑:程序博客网 时间:2024/05/21 10:18

Problem

Often in Flex Builder I get warnings like: Data binding will not be able to detect assignments to some_variable. or 1008: parameter 'some_parameter' has no type declaration.

Solution

Disable warning options in Flex Builder.

Detailed explanation

Open the Compiler Properties dialog box, select Project -> Properties -> Flex Compiler. In input fileld  "Additional compiler arguments:" you can type commands for disabling warnings.

 

To disable ActionScript warnings : -show-actionscript-warnings=false

To disable Binding warnings: -show-binding-warnings=false

To disable all warnings: -warnings=false