I want to know if I can use a tree and when and item in the tree is clicked the viewstack changes to that certain item?

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

Yes. Try something like this:

<mx:Tree id="tree" click="viewStack.selectedChild = tree.selectedItem" />

If your dataprovider for the tree does not contain the ViewStack component you're looking for:

  1. Handle the tree click event
  2. Match the tree selectedItem to the component you want in the ViewStack
  3. Set ViewStack.selectedChild to that component

If you still need help, post some code!

link|improve this answer
Thank you. This is very helpful. :D – Dennis Jan 31 '11 at 21:08
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.