<?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: Drag-and-Resize with Flex</title>
	<atom:link href="http://blog.kevinhoyt.org/2005/01/18/drag-and-resize-with-flex/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.kevinhoyt.org/2005/01/18/drag-and-resize-with-flex/</link>
	<description>On the desktop, on the web, on the device ... On the Platform</description>
	<pubDate>Tue,  6 Jan 2009 21:56:13 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.2</generator>
		<item>
		<title>By: Venturi</title>
		<link>http://blog.kevinhoyt.org/2005/01/18/drag-and-resize-with-flex/#comment-32801</link>
		<dc:creator>Venturi</dc:creator>
		<pubDate>Thu, 10 Apr 2008 18:01:18 +0000</pubDate>
		<guid isPermaLink="false">http://blog.kevinhoyt.org/?p=60#comment-32801</guid>
		<description>hi kevin, i hit 'download', prompt 400 error :(</description>
		<content:encoded><![CDATA[<p>hi kevin, i hit &#8216;download&#8217;, prompt 400 error <img src='http://blog.kevinhoyt.org/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kevin Hoyt</title>
		<link>http://blog.kevinhoyt.org/2005/01/18/drag-and-resize-with-flex/#comment-19276</link>
		<dc:creator>Kevin Hoyt</dc:creator>
		<pubDate>Mon, 07 Jan 2008 16:48:05 +0000</pubDate>
		<guid isPermaLink="false">http://blog.kevinhoyt.org/?p=60#comment-19276</guid>
		<description>Tom,

The "download" link is right before the Captivate recording.

Regards,
Kevin</description>
		<content:encoded><![CDATA[<p>Tom,</p>
<p>The &#8220;download&#8221; link is right before the Captivate recording.</p>
<p>Regards,<br />
Kevin</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tom</title>
		<link>http://blog.kevinhoyt.org/2005/01/18/drag-and-resize-with-flex/#comment-18984</link>
		<dc:creator>Tom</dc:creator>
		<pubDate>Sat, 05 Jan 2008 10:33:55 +0000</pubDate>
		<guid isPermaLink="false">http://blog.kevinhoyt.org/?p=60#comment-18984</guid>
		<description>Good job but where are the sources?? Marc, I used your code but as you create 8 UIComponents per canvas my RAM grows quickly ;-( I am trying to develop the same but RAM optimized!</description>
		<content:encoded><![CDATA[<p>Good job but where are the sources?? Marc, I used your code but as you create 8 UIComponents per canvas my RAM grows quickly ;-( I am trying to develop the same but RAM optimized!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Marc Hughes</title>
		<link>http://blog.kevinhoyt.org/2005/01/18/drag-and-resize-with-flex/#comment-12963</link>
		<dc:creator>Marc Hughes</dc:creator>
		<pubDate>Fri, 23 Nov 2007 18:34:11 +0000</pubDate>
		<guid isPermaLink="false">http://blog.kevinhoyt.org/?p=60#comment-12963</guid>
		<description>ObjectHandles is a library I've been working on for a while that does exactly this sort of thing.

http://www.rogue-development.com/objectHandles.xml</description>
		<content:encoded><![CDATA[<p>ObjectHandles is a library I&#8217;ve been working on for a while that does exactly this sort of thing.</p>
<p><a href="http://www.rogue-development.com/objectHandles.xml" rel="nofollow">http://www.rogue-development.com/objectHandles.xml</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kevin Hoyt</title>
		<link>http://blog.kevinhoyt.org/2005/01/18/drag-and-resize-with-flex/#comment-188</link>
		<dc:creator>Kevin Hoyt</dc:creator>
		<pubDate>Thu, 27 Jan 2005 14:08:32 +0000</pubDate>
		<guid isPermaLink="false">http://blog.kevinhoyt.org/?p=60#comment-188</guid>
		<description>Bryan,

Interesting code snippet.  It seems to be a little incomplete as the property "WHOLE" doesn't exist.  I suppose one might extrapolate and complete the snippet, however...

I notice that you use an undocumented, and therefore unsupported property of the Panel container.  In general, Flex developers should not use undocumented and unsupported portions of the API.

Thanks,
Kevin
</description>
		<content:encoded><![CDATA[<p>Bryan,</p>
<p>Interesting code snippet.  It seems to be a little incomplete as the property &#8220;WHOLE&#8221; doesn&#8217;t exist.  I suppose one might extrapolate and complete the snippet, however&#8230;</p>
<p>I notice that you use an undocumented, and therefore unsupported property of the Panel container.  In general, Flex developers should not use undocumented and unsupported portions of the API.</p>
<p>Thanks,<br />
Kevin</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bryan Choi</title>
		<link>http://blog.kevinhoyt.org/2005/01/18/drag-and-resize-with-flex/#comment-187</link>
		<dc:creator>Bryan Choi</dc:creator>
		<pubDate>Wed, 26 Jan 2005 23:06:15 +0000</pubDate>
		<guid isPermaLink="false">http://blog.kevinhoyt.org/?p=60#comment-187</guid>
		<description>&#60;mx:Script&#62;
		&#60;![CDATA[
			function dragPanel(event){
				var pn = event.target;
				pn.back_mc.useHandCursor = true;
				pn.back_mc.onPress = function(){
					application.start( WHOLE );
				}
			}
		]]&#62;
		&#60;/mx:Script&#62;
		&#60;mx:Panel id="rect" title="Drag Panel" width="300" height="300" creationComplete="dragPanel( event )"&#62;
			&#60;mx:Label text="You can drag by pressing header!" fontSize="12"/&#62;
			&#60;mx:Button label="click" click="mx.controls.Alert.show('Clicked!')"&#62;&#60;/mx:Button&#62;
		&#60;/mx:Panel&#62;</description>
		<content:encoded><![CDATA[<p>&lt;mx:Script&gt;<br />
		&lt;![CDATA[<br />
			function dragPanel(event){<br />
				var pn = event.target;<br />
				pn.back_mc.useHandCursor = true;<br />
				pn.back_mc.onPress = function(){<br />
					application.start( WHOLE );<br />
				}<br />
			}<br />
		]]&gt;<br />
		&lt;/mx:Script&gt;<br />
		&lt;mx:Panel id=&#8221;rect&#8221; title=&#8221;Drag Panel&#8221; width=&#8221;300&#8243; height=&#8221;300&#8243; creationComplete=&#8221;dragPanel( event )&#8221;&gt;<br />
			&lt;mx:Label text=&#8221;You can drag by pressing header!&#8221; fontSize=&#8221;12&#8243;/&gt;<br />
			&lt;mx:Button label=&#8221;click&#8221; click=&#8221;mx.controls.Alert.show(&#8217;Clicked!&#8217;)&#8221;&gt;&lt;/mx:Button&gt;<br />
		&lt;/mx:Panel&gt;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bryan Choi</title>
		<link>http://blog.kevinhoyt.org/2005/01/18/drag-and-resize-with-flex/#comment-186</link>
		<dc:creator>Bryan Choi</dc:creator>
		<pubDate>Wed, 26 Jan 2005 23:01:24 +0000</pubDate>
		<guid isPermaLink="false">http://blog.kevinhoyt.org/?p=60#comment-186</guid>
		<description></description>
		<content:encoded><![CDATA[<br />
]]></content:encoded>
	</item>
	<item>
		<title>By: Ken Young</title>
		<link>http://blog.kevinhoyt.org/2005/01/18/drag-and-resize-with-flex/#comment-185</link>
		<dc:creator>Ken Young</dc:creator>
		<pubDate>Thu, 20 Jan 2005 00:55:08 +0000</pubDate>
		<guid isPermaLink="false">http://blog.kevinhoyt.org/?p=60#comment-185</guid>
		<description>Very cool.

In looking at the source, it looks to be very specific to this example.  Possible  follow on example going to be to show how to componentize the resizeable square (so multiple squares could be on one canvas), or could be explained and left to the reader to complete.

Other possiblities could be different shapes(circles, triangles, basic flowchart symbols), or linking rectangles together, etc.  

Again, very cool example.  It is a great building block for custom applications.

Ken</description>
		<content:encoded><![CDATA[<p>Very cool.</p>
<p>In looking at the source, it looks to be very specific to this example.  Possible  follow on example going to be to show how to componentize the resizeable square (so multiple squares could be on one canvas), or could be explained and left to the reader to complete.</p>
<p>Other possiblities could be different shapes(circles, triangles, basic flowchart symbols), or linking rectangles together, etc.  </p>
<p>Again, very cool example.  It is a great building block for custom applications.</p>
<p>Ken</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ben lee</title>
		<link>http://blog.kevinhoyt.org/2005/01/18/drag-and-resize-with-flex/#comment-184</link>
		<dc:creator>ben lee</dc:creator>
		<pubDate>Tue, 18 Jan 2005 13:59:40 +0000</pubDate>
		<guid isPermaLink="false">http://blog.kevinhoyt.org/?p=60#comment-184</guid>
		<description>good~</description>
		<content:encoded><![CDATA[<p>good~</p>
]]></content:encoded>
	</item>
</channel>
</rss>
