<?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: Flash Drag and Drop Tutorial &#124; startDrag Actionscript</title>
	<atom:link href="http://blog.circlecube.com/2009/04/tutorial/flash-drag-and-drop-tutorial-basic-startdrag-to-flexible-mouse-event-listeners-actionscript-2-as3/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.circlecube.com/2009/04/tutorial/flash-drag-and-drop-tutorial-basic-startdrag-to-flexible-mouse-event-listeners-actionscript-2-as3/</link>
	<description>Evan&#039;s Interactive Actionscript Exploration</description>
	<lastBuildDate>Mon, 15 Mar 2010 12:53:04 +0000</lastBuildDate>
	
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>By: Evan Mullins</title>
		<link>http://blog.circlecube.com/2009/04/tutorial/flash-drag-and-drop-tutorial-basic-startdrag-to-flexible-mouse-event-listeners-actionscript-2-as3/#comment-1245</link>
		<dc:creator>Evan Mullins</dc:creator>
		<pubDate>Mon, 07 Dec 2009 14:09:21 +0000</pubDate>
		<guid isPermaLink="false">http://blog.circlecube.com/?p=379#comment-1245</guid>
		<description>@fedoo - the &quot;me&quot; isn&#039;t required I&#039;ve had to use it a couple times to specify the object that is being dragged in different ways in the past, and I guess it just stuck. using this is chancy though because at different times this can mean different things... I try to at least always use event.currentTarget or something of the sort.
Thanks!</description>
		<content:encoded><![CDATA[<p>@fedoo &#8211; the &#8220;me&#8221; isn&#8217;t required I&#8217;ve had to use it a couple times to specify the object that is being dragged in different ways in the past, and I guess it just stuck. using this is chancy though because at different times this can mean different things&#8230; I try to at least always use event.currentTarget or something of the sort.<br />
Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Morgan</title>
		<link>http://blog.circlecube.com/2009/04/tutorial/flash-drag-and-drop-tutorial-basic-startdrag-to-flexible-mouse-event-listeners-actionscript-2-as3/#comment-1244</link>
		<dc:creator>Morgan</dc:creator>
		<pubDate>Sun, 06 Dec 2009 16:40:12 +0000</pubDate>
		<guid isPermaLink="false">http://blog.circlecube.com/?p=379#comment-1244</guid>
		<description>Worked great for me. Thanks for the tutorial.</description>
		<content:encoded><![CDATA[<p>Worked great for me. Thanks for the tutorial.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: fedoo</title>
		<link>http://blog.circlecube.com/2009/04/tutorial/flash-drag-and-drop-tutorial-basic-startdrag-to-flexible-mouse-event-listeners-actionscript-2-as3/#comment-1241</link>
		<dc:creator>fedoo</dc:creator>
		<pubDate>Tue, 01 Dec 2009 21:26:16 +0000</pubDate>
		<guid isPermaLink="false">http://blog.circlecube.com/?p=379#comment-1241</guid>
		<description>Hi,

Is there neccessary to use &quot;me&quot; variable? Could we use just &quot;this&quot; instead? 
like -&gt; this.startDrag();  etc.

thanks</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>Is there neccessary to use &#8220;me&#8221; variable? Could we use just &#8220;this&#8221; instead?<br />
like -&gt; this.startDrag();  etc.</p>
<p>thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: André</title>
		<link>http://blog.circlecube.com/2009/04/tutorial/flash-drag-and-drop-tutorial-basic-startdrag-to-flexible-mouse-event-listeners-actionscript-2-as3/#comment-1190</link>
		<dc:creator>André</dc:creator>
		<pubDate>Fri, 28 Aug 2009 12:47:14 +0000</pubDate>
		<guid isPermaLink="false">http://blog.circlecube.com/?p=379#comment-1190</guid>
		<description>What i´ve made to correct this issue??

I´ve made a class extending the Sprite or MovieClip with the function Drag, that automatically add the listener to the stage when the mouse is down over the object, and remove when the stage has a mouseup... also all you need to do is &quot;myInstance.draggable=true;&quot; to create a draggable object, and you have another parameters like: lockCenter, bounds, smoothDrag (e.updateAfterEvent), topLevel (when mouse is down and topLevel is true the object becomes the top level of the container)</description>
		<content:encoded><![CDATA[<p>What i´ve made to correct this issue??</p>
<p>I´ve made a class extending the Sprite or MovieClip with the function Drag, that automatically add the listener to the stage when the mouse is down over the object, and remove when the stage has a mouseup&#8230; also all you need to do is &#8220;myInstance.draggable=true;&#8221; to create a draggable object, and you have another parameters like: lockCenter, bounds, smoothDrag (e.updateAfterEvent), topLevel (when mouse is down and topLevel is true the object becomes the top level of the container)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Scott Rockers</title>
		<link>http://blog.circlecube.com/2009/04/tutorial/flash-drag-and-drop-tutorial-basic-startdrag-to-flexible-mouse-event-listeners-actionscript-2-as3/#comment-1084</link>
		<dc:creator>Scott Rockers</dc:creator>
		<pubDate>Thu, 30 Apr 2009 21:06:25 +0000</pubDate>
		<guid isPermaLink="false">http://blog.circlecube.com/?p=379#comment-1084</guid>
		<description>Nice tutorial, I as well had to do a work around because I wasn&#039;t happy with the performance, but your code was a little better.</description>
		<content:encoded><![CDATA[<p>Nice tutorial, I as well had to do a work around because I wasn&#8217;t happy with the performance, but your code was a little better.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: samBrown</title>
		<link>http://blog.circlecube.com/2009/04/tutorial/flash-drag-and-drop-tutorial-basic-startdrag-to-flexible-mouse-event-listeners-actionscript-2-as3/#comment-1080</link>
		<dc:creator>samBrown</dc:creator>
		<pubDate>Mon, 27 Apr 2009 14:56:11 +0000</pubDate>
		<guid isPermaLink="false">http://blog.circlecube.com/?p=379#comment-1080</guid>
		<description>interesting example, I&#039;ve run into this as well and had to use a work-around. Thanks for the tip</description>
		<content:encoded><![CDATA[<p>interesting example, I&#8217;ve run into this as well and had to use a work-around. Thanks for the tip</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Video &#124; Enjolt.com &#124; Innovate for Success</title>
		<link>http://blog.circlecube.com/2009/04/tutorial/flash-drag-and-drop-tutorial-basic-startdrag-to-flexible-mouse-event-listeners-actionscript-2-as3/#comment-1078</link>
		<dc:creator>Video &#124; Enjolt.com &#124; Innovate for Success</dc:creator>
		<pubDate>Sat, 25 Apr 2009 19:17:07 +0000</pubDate>
		<guid isPermaLink="false">http://blog.circlecube.com/?p=379#comment-1078</guid>
		<description>[...] strong class=keywordFlex/strong optimization techniques and practices Open Enterprise 2009: Dion   Flash Drag and Drop Tutorial &#124; startDrag Actionscript - blog.circlecube.com 04/24/2009 I find that Drag and Drop is the most intuitive form of user [...]</description>
		<content:encoded><![CDATA[<p>[...] strong class=keywordFlex/strong optimization techniques and practices Open Enterprise 2009: Dion   Flash Drag and Drop Tutorial | startDrag Actionscript &#8211; blog.circlecube.com 04/24/2009 I find that Drag and Drop is the most intuitive form of user [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->