vote up 1 vote down star
1

Flex Builder defaults some components to "fit to content" if you don't specify a set width or height. I'm trying to fill a mx:Tile component with Actionscript, but the layout has some strange spacing when I don't specify the width of a component I add to it. Is there a way to set the components to "fit to content" using Actionscript?

flag

2 Answers

vote up 0 vote down

Do you still need the tiles to align in columns/rows, or do you want them all to be fit-to-content? If you want the former, good luck, and I hope someone else can answer for my benefit. If you want the latter, you could use FlowContainer (which I got from Appdivision).

link|flag
vote up 0 vote down
// AS3 way
var c:UIComponent = <your component that should fit into parent's content>;
c.percentWidth = 100;
c.percentHeight = 100;

// MXML way
<mx:Canvas>
   <mx:Button id="c" width="100%" height="100%"/>
</mx:Canvas>
link|flag
I'm looking to fit the parent to the children, the mx:Tile component has some odd behavior if I don't specify width such that the components aren't spaced evenly. I thought finding a way to specify "Fit to content" for the parent component might fix it, but this may be another problem entirely. – timbonicus Jul 14 at 21:27
ts hard to understand what you mean. Could you edit your question and post a small piece of code so I can copy-paste it and see the problem? – oshyshko Jul 16 at 3:08

Your Answer

Get an OpenID
or

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