How to use Actionscript to specify Flex "fit to content" - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T18:50:58Zhttp://stackoverflow.com/feeds/question/994690http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/994690/how-to-use-actionscript-to-specify-flex-fit-to-content1How to use Actionscript to specify Flex "fit to content"timbonicus2009-06-15T06:17:21Z2009-10-09T14:00:03Z
<p>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?</p>
http://stackoverflow.com/questions/994690/how-to-use-actionscript-to-specify-flex-fit-to-content/994749#9947490Answer by Jacob for How to use Actionscript to specify Flex "fit to content"Jacob2009-06-15T06:38:47Z2009-06-15T06:38:47Z<p>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 <a href="http://appdivision.com/" rel="nofollow">Appdivision</a>).</p>
http://stackoverflow.com/questions/994690/how-to-use-actionscript-to-specify-flex-fit-to-content/1025508#10255080Answer by oshyshko for How to use Actionscript to specify Flex "fit to content"oshyshko2009-06-22T04:56:48Z2009-06-22T04:56:48Z<pre><code>// 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>
</code></pre>