Re: [flexcoders] Height Question

2008-07-30 Thread Richard Rodseth
I haven't thought about the dynamic adding to the extent Josh has, but my initial reaction was it sounded like two VBoxes in an HBox. On Tue, Jul 29, 2008 at 5:45 PM, Josh McDonald [EMAIL PROTECTED] wrote: What you're asking is doable, but you're definitinely going the wrong way about it. Put

[flexcoders] Height Question

2008-07-29 Thread tchredeemed
Ok, I have two VBoxes, side by side, that need to both be the height of the biggest of the two (children added dynamically on show). I do it this way: leftVBox.minHeight = rightVBox.height; rightVBox.minHeight = leftVBox.height; (if this is a stupid way to do it, let me know). The problem is

Re: [flexcoders] Height Question

2008-07-29 Thread Josh McDonald
What you're asking is doable, but you're definitinely going the wrong way about it. Put the two vboxes in a canvas that doesn't have its height set, and set the height on each vbox to 100%. Example: ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml;