0
votes

I have seen a lot of codes regarding how to bind property in Flex project. Such as this code in Flex Help: var watcherSetter:ChangeWatcher = BindingUtils.bindSetter(updateMyString, myTI, "text");

However, I am creating Actionscript class within Actionscript Project, and I cannot import mx.binding.utils.* into my project. How could I make this works when Actionscript project cannot see this package? Is there any other way to makes property of different object bind together in Actionscript project?

1

1 Answers

1
votes

which IDE are you using?

please note, you can always manually import the classes by simply adding a classpath pointing to the flex framework sources with the SDK.

also, do not forget to declare the properties as bindable using the according metatag.