1

Is it possible to hide/show or enable/disable component parameters based on the value of another parameter? Example:

"showTextField" checked would show formatting parameters (or allow them to be changed)

unchecked would hide formatting parameters(or disallow them to be changed - greyed out)

gin93r
  • 1,551
  • 4
  • 21
  • 39

1 Answers1

0

If you're using Flex you can take advantage of Data Binding

This will allow you to bind properties of one object to another.

This can also dispatch a PropertyChangeEvent when a value in your object is changed.

If you're working with a pure AS3 project you may want to check out this 3rd party library

http://nanosome.org/notify/

francis
  • 5,889
  • 3
  • 27
  • 51