Hi, here is an easy one:
<mx:VBox width="200" height="300">
<mx:VBox minHeight="0">
... lots of stuff ...
</mx:VBox>
<mx:VBox>
... lots of stuff ...
</mx:VBox>
</mx:VBox>
When lots of stuff is added, I want the top inner VBox to show
scrollbars, not the second. Any way to do this? Other than by setting
minHeight="0", which I've tried and which doesn't work?
Here is a non-standard solution: I could change the outer VBox to a
VBox inheritor and override updateDisplayList, and then set
_first.height manually after calling super.updateDisplayList. Is this
totally wrong for any reason? Will I end up breaking Flex?
Thanks,
Adam