<?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: Resizable, Minimizable/Maximizable TitleWindow</title>
	<atom:link href="http://www.flexdaddy.com/2005/03/06/resizable-and-collapsable-titlewindow-flex-15/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.flexdaddy.com/2005/03/06/resizable-and-collapsable-titlewindow-flex-15/</link>
	<description>Andrew Spaulding on Adobe Flash Platform Technologies</description>
	<lastBuildDate>Tue, 19 Jan 2010 12:00:54 -0800</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Julio</title>
		<link>http://www.flexdaddy.com/2005/03/06/resizable-and-collapsable-titlewindow-flex-15/comment-page-1/#comment-254174</link>
		<dc:creator>Julio</dc:creator>
		<pubDate>Mon, 02 Nov 2009 13:53:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.flexdaddy.info/2005/03/06/resizable-and-collapsable-titlewindow-flex-15/#comment-254174</guid>
		<description>Hi,

is this code still available?

thanks</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>is this code still available?</p>
<p>thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tatini</title>
		<link>http://www.flexdaddy.com/2005/03/06/resizable-and-collapsable-titlewindow-flex-15/comment-page-1/#comment-254142</link>
		<dc:creator>Tatini</dc:creator>
		<pubDate>Mon, 13 Jul 2009 08:43:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.flexdaddy.info/2005/03/06/resizable-and-collapsable-titlewindow-flex-15/#comment-254142</guid>
		<description>Can i set minimum height and minimum width to the above window,i tried by using minHeight and minWidth,but it didnt work.</description>
		<content:encoded><![CDATA[<p>Can i set minimum height and minimum width to the above window,i tried by using minHeight and minWidth,but it didnt work.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David Parks</title>
		<link>http://www.flexdaddy.com/2005/03/06/resizable-and-collapsable-titlewindow-flex-15/comment-page-1/#comment-254105</link>
		<dc:creator>David Parks</dc:creator>
		<pubDate>Tue, 23 Jun 2009 08:26:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.flexdaddy.info/2005/03/06/resizable-and-collapsable-titlewindow-flex-15/#comment-254105</guid>
		<description>The download link gives a 404 on this article now. Such a component would be a great additon to the open source flexlib project:

http://code.google.com/p/flexlib/

They really need something like this!  If someone has an updated link to this or something similar please post it.</description>
		<content:encoded><![CDATA[<p>The download link gives a 404 on this article now. Such a component would be a great additon to the open source flexlib project:</p>
<p><a href="http://code.google.com/p/flexlib/" rel="nofollow">http://code.google.com/p/flexlib/</a></p>
<p>They really need something like this!  If someone has an updated link to this or something similar please post it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mark</title>
		<link>http://www.flexdaddy.com/2005/03/06/resizable-and-collapsable-titlewindow-flex-15/comment-page-1/#comment-140454</link>
		<dc:creator>Mark</dc:creator>
		<pubDate>Fri, 04 Apr 2008 17:30:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.flexdaddy.info/2005/03/06/resizable-and-collapsable-titlewindow-flex-15/#comment-140454</guid>
		<description>I found a bug in the original SizeableTitleWindow

inside resizeDownListener you do this

var cursorStyle:int = getCursorStyle(event.localX, event.localY, false);

it seems that event.localY and event.localX are local to the target, not the current target.  So in my case, I had a DataGrid in window.  If I tried to resize a column, it would mistakenly think I was resizing the SizeableTitleWindow.

I changed the code to look at stageX and manually converted them to the TitleWindows coordinate space and that seemed to fix it.

var myPoint:Point = globalToLocal(new Point(event.stageX,event.stageY)); 
var cursorStyle:int = getCursorStyle(myPoint.x,myPoint.y, false);</description>
		<content:encoded><![CDATA[<p>I found a bug in the original SizeableTitleWindow</p>
<p>inside resizeDownListener you do this</p>
<p>var cursorStyle:int = getCursorStyle(event.localX, event.localY, false);</p>
<p>it seems that event.localY and event.localX are local to the target, not the current target.  So in my case, I had a DataGrid in window.  If I tried to resize a column, it would mistakenly think I was resizing the SizeableTitleWindow.</p>
<p>I changed the code to look at stageX and manually converted them to the TitleWindows coordinate space and that seemed to fix it.</p>
<p>var myPoint:Point = globalToLocal(new Point(event.stageX,event.stageY));<br />
var cursorStyle:int = getCursorStyle(myPoint.x,myPoint.y, false);</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrew Spaulding</title>
		<link>http://www.flexdaddy.com/2005/03/06/resizable-and-collapsable-titlewindow-flex-15/comment-page-1/#comment-70503</link>
		<dc:creator>Andrew Spaulding</dc:creator>
		<pubDate>Mon, 10 Sep 2007 01:51:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.flexdaddy.info/2005/03/06/resizable-and-collapsable-titlewindow-flex-15/#comment-70503</guid>
		<description>Hi Ken,

I&#039;d suggest looking at the SizeableTitleWindow component that is generated as a part of the ColdFusion/Flex wizard that ships with the ColdFusion extensions for Flex Builder.

It can also be seen here http://jeff.mxdj.com/sizeabletitlewindow.htm

Cheers, Andrew</description>
		<content:encoded><![CDATA[<p>Hi Ken,</p>
<p>I&#8217;d suggest looking at the SizeableTitleWindow component that is generated as a part of the ColdFusion/Flex wizard that ships with the ColdFusion extensions for Flex Builder.</p>
<p>It can also be seen here <a href="http://jeff.mxdj.com/sizeabletitlewindow.htm" rel="nofollow">http://jeff.mxdj.com/sizeabletitlewindow.htm</a></p>
<p>Cheers, Andrew</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ken Caldwell</title>
		<link>http://www.flexdaddy.com/2005/03/06/resizable-and-collapsable-titlewindow-flex-15/comment-page-1/#comment-69107</link>
		<dc:creator>Ken Caldwell</dc:creator>
		<pubDate>Fri, 31 Aug 2007 05:31:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.flexdaddy.info/2005/03/06/resizable-and-collapsable-titlewindow-flex-15/#comment-69107</guid>
		<description>can this still be downlaoded ??

i keep getting an error when I try the &quot;download the sasmple app&quot; link.

Ken</description>
		<content:encoded><![CDATA[<p>can this still be downlaoded ??</p>
<p>i keep getting an error when I try the &#8220;download the sasmple app&#8221; link.</p>
<p>Ken</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Josh</title>
		<link>http://www.flexdaddy.com/2005/03/06/resizable-and-collapsable-titlewindow-flex-15/comment-page-1/#comment-14373</link>
		<dc:creator>Josh</dc:creator>
		<pubDate>Mon, 05 Feb 2007 21:29:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.flexdaddy.info/2005/03/06/resizable-and-collapsable-titlewindow-flex-15/#comment-14373</guid>
		<description>Nguyen:  Nicely done!  Care to add a &quot;View Source&quot; function to that code and share?</description>
		<content:encoded><![CDATA[<p>Nguyen:  Nicely done!  Care to add a &#8220;View Source&#8221; function to that code and share?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Javi</title>
		<link>http://www.flexdaddy.com/2005/03/06/resizable-and-collapsable-titlewindow-flex-15/comment-page-1/#comment-10749</link>
		<dc:creator>Javi</dc:creator>
		<pubDate>Wed, 08 Nov 2006 13:47:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.flexdaddy.info/2005/03/06/resizable-and-collapsable-titlewindow-flex-15/#comment-10749</guid>
		<description>http://jeff.mxdj.com/sizeabletitlewindow.htm ;-)</description>
		<content:encoded><![CDATA[<p><a href="http://jeff.mxdj.com/sizeabletitlewindow.htm" rel="nofollow">http://jeff.mxdj.com/sizeabletitlewindow.htm</a> <img src='http://www.flexdaddy.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Christopher</title>
		<link>http://www.flexdaddy.com/2005/03/06/resizable-and-collapsable-titlewindow-flex-15/comment-page-1/#comment-10608</link>
		<dc:creator>Christopher</dc:creator>
		<pubDate>Thu, 02 Nov 2006 10:40:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.flexdaddy.info/2005/03/06/resizable-and-collapsable-titlewindow-flex-15/#comment-10608</guid>
		<description>I&#039;ll ask pretty much the same question that everyone seems to be asking ;-) Any work done on a Flex 2/As3 version? Has anyone else done any work on that? I&#039;m going to try to do what I can to convert it myself, but I was just wondering.

Christopher</description>
		<content:encoded><![CDATA[<p>I&#8217;ll ask pretty much the same question that everyone seems to be asking <img src='http://www.flexdaddy.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' />  Any work done on a Flex 2/As3 version? Has anyone else done any work on that? I&#8217;m going to try to do what I can to convert it myself, but I was just wondering.</p>
<p>Christopher</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nguyen Vu Long</title>
		<link>http://www.flexdaddy.com/2005/03/06/resizable-and-collapsable-titlewindow-flex-15/comment-page-1/#comment-8698</link>
		<dc:creator>Nguyen Vu Long</dc:creator>
		<pubDate>Tue, 12 Sep 2006 11:01:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.flexdaddy.info/2005/03/06/resizable-and-collapsable-titlewindow-flex-15/#comment-8698</guid>
		<description>please see this:
http://www.bluemind.co.kr:8700/flex/blueone/bin
for MDI Window and resize panel with drag&amp;drop, min, max, close functions. It&#039;s made of AS 3.0 for Flex 2.0
I developed it for Bluemind company in Korea.</description>
		<content:encoded><![CDATA[<p>please see this:<br />
<a href="http://www.bluemind.co.kr:8700/flex/blueone/bin" rel="nofollow">http://www.bluemind.co.kr:8700/flex/blueone/bin</a><br />
for MDI Window and resize panel with drag&amp;drop, min, max, close functions. It&#8217;s made of AS 3.0 for Flex 2.0<br />
I developed it for Bluemind company in Korea.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
