Flash Builder: "Accessing undefined Bindable properties"

I have inherited the Adobe AIR application and am trying to debug it through Flash Builder 4.5. In Flash Builder, when I look at one of the MXML files, I see warnings for each use of the tag [Bindable]:

[Bindable]
internal var selectedPreviousID:String=null;

[Bindable]
internal var recent:mx.collections.ArrayCollection;

Warning:

Access the undefined Bindable property

There is an import for what I consider the appropriate library:

import mx.binding.utils. *;

And there are no missing half colonies on the lines preceding each warning, as suggested in this blog post .

The project is configured to use Flex SDK 3.6.

In addition, the file will not load in the constructor with this warning:

: . "" > "", .

? , , , , . Flex SDK 3.6?

+3
1

, , - <mx:WebService> :

<mx:WebServiceid="service"
    wsdl="https://blah.com/blah?WSDL"
    operations='{{"Op1":this.method1()}}'/>
</mx:WebService>

, inline 'operations', Bindable. .

, , inline-, :

properties='{{"outerDocument":this}}'

. , , .

XML :

<mx:WebServiceid="service"
    wsdl="https://blah.com/blah?WSDL"/>
    <mx:operation name="Op1" result="this.method1(event)">
    <mx:request>
        <token>{credentials.token}</token>
        </mx:request>
    </mx:operation>
</mx:WebService>
+3

All Articles