<?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: AIR-to-Desktop Drag-and-Drop: Two Simple Utility Classes</title>
	<atom:link href="http://coenraets.org/blog/2007/06/air-to-desktop-drag-and-drop-two-simple-utility-classes/feed/" rel="self" type="application/rss+xml" />
	<link>http://coenraets.org/blog/2007/06/air-to-desktop-drag-and-drop-two-simple-utility-classes/</link>
	<description>Rich Internet Applications, Flex, AIR, Java</description>
	<lastBuildDate>Mon, 15 Mar 2010 22:39:53 -0700</lastBuildDate>
	
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: smackdown</title>
		<link>http://coenraets.org/blog/2007/06/air-to-desktop-drag-and-drop-two-simple-utility-classes/comment-page-2/#comment-371430</link>
		<dc:creator>smackdown</dc:creator>
		<pubDate>Wed, 24 Feb 2010 09:24:23 +0000</pubDate>
		<guid isPermaLink="false">http://coenraets.org/blog/2007/06/air-to-desktop-drag-and-drop-two-simple-utility-classes/#comment-371430</guid>
		<description>Thanks a lot for the wonderful information</description>
		<content:encoded><![CDATA[<p>Thanks a lot for the wonderful information</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kapadokya</title>
		<link>http://coenraets.org/blog/2007/06/air-to-desktop-drag-and-drop-two-simple-utility-classes/comment-page-2/#comment-365846</link>
		<dc:creator>kapadokya</dc:creator>
		<pubDate>Fri, 22 Jan 2010 14:16:31 +0000</pubDate>
		<guid isPermaLink="false">http://coenraets.org/blog/2007/06/air-to-desktop-drag-and-drop-two-simple-utility-classes/#comment-365846</guid>
		<description>AIR support Desktop-to-AIR drag-and-drop? For instance, am I able to implement a feature where the user can drag a JPG from a browser window to the AIR program and have the AIR program display it?</description>
		<content:encoded><![CDATA[<p>AIR support Desktop-to-AIR drag-and-drop? For instance, am I able to implement a feature where the user can drag a JPG from a browser window to the AIR program and have the AIR program display it?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ankara parke</title>
		<link>http://coenraets.org/blog/2007/06/air-to-desktop-drag-and-drop-two-simple-utility-classes/comment-page-2/#comment-361584</link>
		<dc:creator>ankara parke</dc:creator>
		<pubDate>Fri, 25 Dec 2009 15:55:14 +0000</pubDate>
		<guid isPermaLink="false">http://coenraets.org/blog/2007/06/air-to-desktop-drag-and-drop-two-simple-utility-classes/#comment-361584</guid>
		<description>Having the same problem as RAVI…clipboard.addData() is not appearing as a function</description>
		<content:encoded><![CDATA[<p>Having the same problem as RAVI…clipboard.addData() is not appearing as a function</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Philippe</title>
		<link>http://coenraets.org/blog/2007/06/air-to-desktop-drag-and-drop-two-simple-utility-classes/comment-page-2/#comment-358693</link>
		<dc:creator>Philippe</dc:creator>
		<pubDate>Fri, 04 Dec 2009 03:42:13 +0000</pubDate>
		<guid isPermaLink="false">http://coenraets.org/blog/2007/06/air-to-desktop-drag-and-drop-two-simple-utility-classes/#comment-358693</guid>
		<description>OK, I got it all wrong, the NATIVE_DRAG_ENTER event is used for a drag-in gesture, not a drag-out. 
But I found a cheap workaround for the column resize problem. 
Just replace 

if (!event.buttonDown)

by  

if (!event.buttonDown&#124;&#124; _dataGrid.mouseY&lt;_dataGrid.headerHeight) 

et voila!</description>
		<content:encoded><![CDATA[<p>OK, I got it all wrong, the NATIVE_DRAG_ENTER event is used for a drag-in gesture, not a drag-out.<br />
But I found a cheap workaround for the column resize problem.<br />
Just replace </p>
<p>if (!event.buttonDown)</p>
<p>by  </p>
<p>if (!event.buttonDown|| _dataGrid.mouseY&lt;_dataGrid.headerHeight) </p>
<p>et voila!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Philippe</title>
		<link>http://coenraets.org/blog/2007/06/air-to-desktop-drag-and-drop-two-simple-utility-classes/comment-page-2/#comment-358659</link>
		<dc:creator>Philippe</dc:creator>
		<pubDate>Thu, 03 Dec 2009 23:28:06 +0000</pubDate>
		<guid isPermaLink="false">http://coenraets.org/blog/2007/06/air-to-desktop-drag-and-drop-two-simple-utility-classes/#comment-358659</guid>
		<description>Christophe,
Great post as usual. The only caveat is that the example uses the MOUSE_MOVE event as the trigger for the drag operation. Unfortunately, this catches resizes of the datagrid columns...
Is there a reasin why you did not use the NATIVE_DRAG_ENTER instead?
Thx</description>
		<content:encoded><![CDATA[<p>Christophe,<br />
Great post as usual. The only caveat is that the example uses the MOUSE_MOVE event as the trigger for the drag operation. Unfortunately, this catches resizes of the datagrid columns&#8230;<br />
Is there a reasin why you did not use the NATIVE_DRAG_ENTER instead?<br />
Thx</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: chat</title>
		<link>http://coenraets.org/blog/2007/06/air-to-desktop-drag-and-drop-two-simple-utility-classes/comment-page-2/#comment-358633</link>
		<dc:creator>chat</dc:creator>
		<pubDate>Thu, 03 Dec 2009 20:22:58 +0000</pubDate>
		<guid isPermaLink="false">http://coenraets.org/blog/2007/06/air-to-desktop-drag-and-drop-two-simple-utility-classes/#comment-358633</guid>
		<description>very very good</description>
		<content:encoded><![CDATA[<p>very very good</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sohbet odası</title>
		<link>http://coenraets.org/blog/2007/06/air-to-desktop-drag-and-drop-two-simple-utility-classes/comment-page-2/#comment-356947</link>
		<dc:creator>sohbet odası</dc:creator>
		<pubDate>Tue, 24 Nov 2009 11:24:19 +0000</pubDate>
		<guid isPermaLink="false">http://coenraets.org/blog/2007/06/air-to-desktop-drag-and-drop-two-simple-utility-classes/#comment-356947</guid>
		<description>how are you  baby melisa</description>
		<content:encoded><![CDATA[<p>how are you  baby melisa</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brand Name Vs Generic Drugs</title>
		<link>http://coenraets.org/blog/2007/06/air-to-desktop-drag-and-drop-two-simple-utility-classes/comment-page-2/#comment-350124</link>
		<dc:creator>Brand Name Vs Generic Drugs</dc:creator>
		<pubDate>Wed, 28 Oct 2009 23:10:10 +0000</pubDate>
		<guid isPermaLink="false">http://coenraets.org/blog/2007/06/air-to-desktop-drag-and-drop-two-simple-utility-classes/#comment-350124</guid>
		<description>hey friend excellent information about AIR-to-Desktop Drag-and-Drop: Two Simple Utility Classes</description>
		<content:encoded><![CDATA[<p>hey friend excellent information about AIR-to-Desktop Drag-and-Drop: Two Simple Utility Classes</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sohbet</title>
		<link>http://coenraets.org/blog/2007/06/air-to-desktop-drag-and-drop-two-simple-utility-classes/comment-page-2/#comment-333780</link>
		<dc:creator>sohbet</dc:creator>
		<pubDate>Sun, 23 Aug 2009 23:13:52 +0000</pubDate>
		<guid isPermaLink="false">http://coenraets.org/blog/2007/06/air-to-desktop-drag-and-drop-two-simple-utility-classes/#comment-333780</guid>
		<description>thanks admin good post</description>
		<content:encoded><![CDATA[<p>thanks admin good post</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: чимчим</title>
		<link>http://coenraets.org/blog/2007/06/air-to-desktop-drag-and-drop-two-simple-utility-classes/comment-page-2/#comment-324616</link>
		<dc:creator>чимчим</dc:creator>
		<pubDate>Wed, 29 Jul 2009 13:58:25 +0000</pubDate>
		<guid isPermaLink="false">http://coenraets.org/blog/2007/06/air-to-desktop-drag-and-drop-two-simple-utility-classes/#comment-324616</guid>
		<description>Кстати, я сейчас посмотрел, ваш блог в Гугле хорошие места занимает ,если имя блога туда вбивать.</description>
		<content:encoded><![CDATA[<p>Кстати, я сейчас посмотрел, ваш блог в Гугле хорошие места занимает ,если имя блога туда вбивать.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
