RE: [flexcoders] Re: Constraining a grid other then with an absolute height.

2006-06-30 Thread Ian Skinner
Yeah Tim, that worked. height={panel1.height - 160} Now the really cool trick would be have the 160 be based on the height of the two controls above the grid. But for now, this is great. Now I am off to the biggest chalenge to date. Creating some behavious, states and maybe a

RE: [flexcoders] Re: Constraining a grid other then with an absolute height.

2006-06-30 Thread Ian Skinner
Easy enough. height={panel1.height-control1.height-control2.height}. I have a simple sample for states, with a transition here: That is what I tried at first, but it did not give me the results I expected. So I did not explore it further, it’s a minor nicety at this point. What

RE: [flexcoders] Re: Constraining a grid other then with an absolute height.

2006-06-29 Thread Ian Skinner
I’m not having much luck with this. If I put it like you suggest I get an error about not allowing strings here. {parentPanel.measuredHeight}-50 If I move the bracket, the error is not thrown, but my grid does not show up. {parentPanel.measuredHeight-50} Ian, The code should