How to use Actionscript to specify Flex "fit to content" - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T18:50:58Z http://stackoverflow.com/feeds/question/994690 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/994690/how-to-use-actionscript-to-specify-flex-fit-to-content 1 How to use Actionscript to specify Flex "fit to content" timbonicus 2009-06-15T06:17:21Z 2009-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#994749 0 Answer by Jacob for How to use Actionscript to specify Flex "fit to content" Jacob 2009-06-15T06:38:47Z 2009-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#1025508 0 Answer by oshyshko for How to use Actionscript to specify Flex "fit to content" oshyshko 2009-06-22T04:56:48Z 2009-06-22T04:56:48Z <pre><code>// AS3 way var c:UIComponent = &lt;your component that should fit into parent's content&gt;; c.percentWidth = 100; c.percentHeight = 100; // MXML way &lt;mx:Canvas&gt; &lt;mx:Button id="c" width="100%" height="100%"/&gt; &lt;/mx:Canvas&gt; </code></pre>