Search Results

1
vote

Enums in AS3 / Flash / Flex?

Check this out: http://flexblog.faratasystems.com/?p=242 …
0
votes

Watching a bindable property

Use the class ObjectProxy or its subclass and wrap up the class that has a property you need to watch. In my example, I'm calling a func if someone is changing the property salary giving it a value …
0
votes

How do I make sure the text of an ActionScript TextInput is updated when the Object property defining that text is updated?

Compile your MXML component with the -keep option. Examine the ActionScript code that was generated by mxmlc and do something similar. You may also do it using the Proxy object - I blogged …