<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: The HBox</title>
	<atom:link href="http://www.addicted2flash.com/2009/04/hbox/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.addicted2flash.com/2009/04/hbox/</link>
	<description>tim richter</description>
	<lastBuildDate>Fri, 20 Aug 2010 06:53:37 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=abc</generator>
	<item>
		<title>By: TIMNHE</title>
		<link>http://www.addicted2flash.com/2009/04/hbox/comment-page-1/#comment-37</link>
		<dc:creator>TIMNHE</dc:creator>
		<pubDate>Thu, 06 Aug 2009 22:27:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.addicted2flash.com/?p=461#comment-37</guid>
		<description>Just update the repository classes and I found the canvas minimumWidth and minimumHeight it´s perfect!

thanks tim!</description>
		<content:encoded><![CDATA[<p>Just update the repository classes and I found the canvas minimumWidth and minimumHeight it´s perfect!</p>
<p>thanks tim!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: TIMNHE</title>
		<link>http://www.addicted2flash.com/2009/04/hbox/comment-page-1/#comment-36</link>
		<dc:creator>TIMNHE</dc:creator>
		<pubDate>Thu, 06 Aug 2009 21:28:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.addicted2flash.com/?p=461#comment-36</guid>
		<description>I did´nt know this functions &#039;desiredPercentageWidth / desiredPercentageHeight&#039;, I will try it again.

Another question ... is there any class / property, to handle the component´s min/max position? I&#039;m using the Canvas layout (sorry if it isn&#039;t the place) to lay any components. 

http://www.aquar.net/canvasDemo.html

To lay the components, the exmple uses the CanvasConstrain, but when the stageWidth is too narrow, I will to stop the position of any components, button2 for example.

It´s possible to control a &#039;global&#039; minSize?

Thanks again!</description>
		<content:encoded><![CDATA[<p>I did´nt know this functions &#8216;desiredPercentageWidth / desiredPercentageHeight&#8217;, I will try it again.</p>
<p>Another question &#8230; is there any class / property, to handle the component´s min/max position? I&#8217;m using the Canvas layout (sorry if it isn&#8217;t the place) to lay any components. </p>
<p><a href="http://www.aquar.net/canvasDemo.html" rel="nofollow">http://www.aquar.net/canvasDemo.html</a></p>
<p>To lay the components, the exmple uses the CanvasConstrain, but when the stageWidth is too narrow, I will to stop the position of any components, button2 for example.</p>
<p>It´s possible to control a &#8216;global&#8217; minSize?</p>
<p>Thanks again!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: tim</title>
		<link>http://www.addicted2flash.com/2009/04/hbox/comment-page-1/#comment-35</link>
		<dc:creator>tim</dc:creator>
		<pubDate>Thu, 06 Aug 2009 16:35:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.addicted2flash.com/?p=461#comment-35</guid>
		<description>Hi TIMNHE,

thank you for your comment. I had to refactor the sizes of the components for a better and faster workflow. So there are only explicit getter/setter for desired/maximum/minimum width and height right now. If you want to lay out a component in percentage values, you have to use desiredPercentageWidth/desiredPercentageHeight instead.

Hope this could help you!</description>
		<content:encoded><![CDATA[<p>Hi TIMNHE,</p>
<p>thank you for your comment. I had to refactor the sizes of the components for a better and faster workflow. So there are only explicit getter/setter for desired/maximum/minimum width and height right now. If you want to lay out a component in percentage values, you have to use desiredPercentageWidth/desiredPercentageHeight instead.</p>
<p>Hope this could help you!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: TIMNHE</title>
		<link>http://www.addicted2flash.com/2009/04/hbox/comment-page-1/#comment-34</link>
		<dc:creator>TIMNHE</dc:creator>
		<pubDate>Wed, 05 Aug 2009 16:33:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.addicted2flash.com/?p=461#comment-34</guid>
		<description>Hi Tim, first of all congratulations, I´m lost to much time thinking about to do something like that, great work.

I´m trying your examples and playing a little. In the HBoxTest, I want to simulate a scalable html header where I have for example 3 Items, the first and the third are scalable to the stage, and the second has a fixed width.

I add 3 SimpleComponents, and set its width as percent value:

_box.add( new SimpleComponent( new Size( 1, 50 )));
_box.add( new SimpleComponent( new Size( 250, 100 )) );
_box.add( new SimpleComponent( new Size( 1, 100 )));


Allways remain a white space between the tird object and the right side of the window.
How can I fill the complete width of the stage with these components?

Thanks!</description>
		<content:encoded><![CDATA[<p>Hi Tim, first of all congratulations, I´m lost to much time thinking about to do something like that, great work.</p>
<p>I´m trying your examples and playing a little. In the HBoxTest, I want to simulate a scalable html header where I have for example 3 Items, the first and the third are scalable to the stage, and the second has a fixed width.</p>
<p>I add 3 SimpleComponents, and set its width as percent value:</p>
<p>_box.add( new SimpleComponent( new Size( 1, 50 )));<br />
_box.add( new SimpleComponent( new Size( 250, 100 )) );<br />
_box.add( new SimpleComponent( new Size( 1, 100 )));</p>
<p>Allways remain a white space between the tird object and the right side of the window.<br />
How can I fill the complete width of the stage with these components?</p>
<p>Thanks!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
