<?xml version="1.0" encoding="utf-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: Flex 2 and horizontal scrollbars</title>
	<atom:link href="http://blog.wrench.com.au/2006/08/27/flex-2-and-horizontal-scrollbars/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.wrench.com.au/2006/08/27/flex-2-and-horizontal-scrollbars/</link>
	<description>Flash, Flex and Technology</description>
	<pubDate>Wed, 07 Jan 2009 13:42:53 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.3</generator>
		<item>
		<title>By: zookeeper</title>
		<link>http://blog.wrench.com.au/2006/08/27/flex-2-and-horizontal-scrollbars/#comment-6420</link>
		<dc:creator>zookeeper</dc:creator>
		<pubDate>Wed, 17 Dec 2008 21:06:39 +0000</pubDate>
		<guid isPermaLink="false">http://blog.wrench.com.au/2006/08/27/flex-2-and-horizontal-scrollbars/#comment-6420</guid>
		<description>This seemed to work better for me at the root node, application level.

import mx.core.Application;
override public function get measuredWidth():Number{
  var out:Number = Application.application.width;
  if (Application.application.verticalScrollBar){
    out -= Application.application.verticalScrollBar.width;
  }
  return out;
}</description>
		<content:encoded><![CDATA[<p>This seemed to work better for me at the root node, application level.</p>
<p>import mx.core.Application;<br />
override public function get measuredWidth():Number{<br />
  var out:Number = Application.application.width;<br />
  if (Application.application.verticalScrollBar){<br />
    out -= Application.application.verticalScrollBar.width;<br />
  }<br />
  return out;<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: DenisPat</title>
		<link>http://blog.wrench.com.au/2006/08/27/flex-2-and-horizontal-scrollbars/#comment-6349</link>
		<dc:creator>DenisPat</dc:creator>
		<pubDate>Tue, 30 Sep 2008 15:32:37 +0000</pubDate>
		<guid isPermaLink="false">http://blog.wrench.com.au/2006/08/27/flex-2-and-horizontal-scrollbars/#comment-6349</guid>
		<description>I'v just had the same problem and fixed it with the VBox minWidth='0' minHeight='0'.
See: http://bugs.adobe.com/jira/browse/SDK-15567</description>
		<content:encoded><![CDATA[<p>I&#8217;v just had the same problem and fixed it with the VBox minWidth=&#8217;0&#8242; minHeight=&#8217;0&#8242;.<br />
See: <a href="http://bugs.adobe.com/jira/browse/SDK-15567" rel="nofollow">http://bugs.adobe.com/jira/browse/SDK-15567</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hob</title>
		<link>http://blog.wrench.com.au/2006/08/27/flex-2-and-horizontal-scrollbars/#comment-6293</link>
		<dc:creator>Hob</dc:creator>
		<pubDate>Tue, 26 Feb 2008 04:05:46 +0000</pubDate>
		<guid isPermaLink="false">http://blog.wrench.com.au/2006/08/27/flex-2-and-horizontal-scrollbars/#comment-6293</guid>
		<description>Just override the measuredHeight property in script:

    override public function get measuredHeight():Number{
		return (this.horizontalScrollBar)? (super.measuredHeight   this.horizontalScrollBar.height):super.measuredHeight
    }</description>
		<content:encoded><![CDATA[<p>Just override the measuredHeight property in script:</p>
<p>    override public function get measuredHeight():Number{<br />
		return (this.horizontalScrollBar)? (super.measuredHeight   this.horizontalScrollBar.height):super.measuredHeight<br />
    }</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Roaders</title>
		<link>http://blog.wrench.com.au/2006/08/27/flex-2-and-horizontal-scrollbars/#comment-6285</link>
		<dc:creator>Roaders</dc:creator>
		<pubDate>Tue, 18 Dec 2007 12:26:25 +0000</pubDate>
		<guid isPermaLink="false">http://blog.wrench.com.au/2006/08/27/flex-2-and-horizontal-scrollbars/#comment-6285</guid>
		<description>although obviously that garbled it! try this:

&#60;mx:Canvas width="100%" height="100%" id="optionsScrollCanvas"&#62;
&#60;mx:VBox id="bxPropertyList" 
width="{(bxPropertyList.height &#62; optionsScrollCanvas.height) ? optionsScrollCanvas.width-16 : optionsScrollCanvas.width}" /&#62;
&#60;/mx:Canvas&#62;</description>
		<content:encoded><![CDATA[<p>although obviously that garbled it! try this:</p>
<p>&lt;mx:Canvas width=&#8221;100%&#8221; height=&#8221;100%&#8221; id=&#8221;optionsScrollCanvas&#8221;&gt;<br />
&lt;mx:VBox id=&#8221;bxPropertyList&#8221;<br />
width=&#8221;{(bxPropertyList.height &gt; optionsScrollCanvas.height) ? optionsScrollCanvas.width-16 : optionsScrollCanvas.width}&#8221; /&gt;<br />
&lt;/mx:Canvas&gt;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Roaders</title>
		<link>http://blog.wrench.com.au/2006/08/27/flex-2-and-horizontal-scrollbars/#comment-6284</link>
		<dc:creator>Roaders</dc:creator>
		<pubDate>Tue, 18 Dec 2007 12:24:53 +0000</pubDate>
		<guid isPermaLink="false">http://blog.wrench.com.au/2006/08/27/flex-2-and-horizontal-scrollbars/#comment-6284</guid>
		<description>How about this:


 optionsScrollCanvas.height) ? optionsScrollCanvas.width-16 : optionsScrollCanvas.width}" /&#62;
</description>
		<content:encoded><![CDATA[<p>How about this:</p>
<p> optionsScrollCanvas.height) ? optionsScrollCanvas.width-16 : optionsScrollCanvas.width}&#8221; /&gt;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Seth Caldwell</title>
		<link>http://blog.wrench.com.au/2006/08/27/flex-2-and-horizontal-scrollbars/#comment-6257</link>
		<dc:creator>Seth Caldwell</dc:creator>
		<pubDate>Fri, 03 Aug 2007 18:09:35 +0000</pubDate>
		<guid isPermaLink="false">http://blog.wrench.com.au/2006/08/27/flex-2-and-horizontal-scrollbars/#comment-6257</guid>
		<description>I am having this same problem, its quite annoying that the flex components aren't aware that the scrollbars take up some of the width or height and resize themselves automatically. I haven't come up with a good work around yet.</description>
		<content:encoded><![CDATA[<p>I am having this same problem, its quite annoying that the flex components aren&#8217;t aware that the scrollbars take up some of the width or height and resize themselves automatically. I haven&#8217;t come up with a good work around yet.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brandon</title>
		<link>http://blog.wrench.com.au/2006/08/27/flex-2-and-horizontal-scrollbars/#comment-6247</link>
		<dc:creator>Brandon</dc:creator>
		<pubDate>Tue, 19 Jun 2007 02:51:33 +0000</pubDate>
		<guid isPermaLink="false">http://blog.wrench.com.au/2006/08/27/flex-2-and-horizontal-scrollbars/#comment-6247</guid>
		<description>was surfing around for a unit converter, not for the example code but to well convert stuff and came across this page.  Ironic that I happen to be just diving into flex myself.  Anyway, just wanted to drop a line and say great app!

brandon</description>
		<content:encoded><![CDATA[<p>was surfing around for a unit converter, not for the example code but to well convert stuff and came across this page.  Ironic that I happen to be just diving into flex myself.  Anyway, just wanted to drop a line and say great app!</p>
<p>brandon</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jason</title>
		<link>http://blog.wrench.com.au/2006/08/27/flex-2-and-horizontal-scrollbars/#comment-184</link>
		<dc:creator>Jason</dc:creator>
		<pubDate>Wed, 11 Oct 2006 23:41:17 +0000</pubDate>
		<guid isPermaLink="false">http://blog.wrench.com.au/2006/08/27/flex-2-and-horizontal-scrollbars/#comment-184</guid>
		<description>Did you want a frog or not!

hehe, hi Tone - just sent an email to Richie. Hope you guys are going well over there.</description>
		<content:encoded><![CDATA[<p>Did you want a frog or not!</p>
<p>hehe, hi Tone - just sent an email to Richie. Hope you guys are going well over there.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: tuna</title>
		<link>http://blog.wrench.com.au/2006/08/27/flex-2-and-horizontal-scrollbars/#comment-182</link>
		<dc:creator>tuna</dc:creator>
		<pubDate>Wed, 11 Oct 2006 17:20:45 +0000</pubDate>
		<guid isPermaLink="false">http://blog.wrench.com.au/2006/08/27/flex-2-and-horizontal-scrollbars/#comment-182</guid>
		<description>look how i care</description>
		<content:encoded><![CDATA[<p>look how i care</p>
]]></content:encoded>
	</item>
</channel>
</rss>
