I have inherited an Adobe AIR application, and am attempting to debug it through Flash Builder 4.5. Within Flash Builder, when I look at one of the MXML files, I see warnings for each use of the [Bindable]
tag:
[Bindable]
internal var selectedPreviousID:String=null;
[Bindable]
internal var recent:mx.collections.ArrayCollection;
The warning is:
Access of undefined property Bindable
There is an import for what I believe to be the appropriate library:
import mx.binding.utils.*;
And there are no missing semi-colons on the lines preceding each warning as per the suggestion in this blog post.
The project is configured to use Flex SDK 3.6.
Additionally the file will not load in the designer, with this warning:
Design mode: Error during component layout. Choose Design > Refresh to refresh design mode.
What am I missing? At runtime I am seeing a blank window - which I assume is the result of the bindings not being triggered. Is this tag not available in Flex SDK 3.6?