<?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: Simple Drag and Drop AIR</title>
	<atom:link href="http://blog.everythingflex.com/2007/06/18/simple-drag-and-drop-air/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.everythingflex.com/2007/06/18/simple-drag-and-drop-air/</link>
	<description>News and Information about Adobe Flex &#38; Adobe AIR by Rich Tretola</description>
	<pubDate>Tue, 06 Jan 2009 11:06:29 +0000</pubDate>
	<generator>http://wordpress.org/?v=abc</generator>
		<item>
		<title>By: syed</title>
		<link>http://blog.everythingflex.com/2007/06/18/simple-drag-and-drop-air/#comment-30366</link>
		<dc:creator>syed</dc:creator>
		<pubDate>Fri, 31 Oct 2008 09:00:42 +0000</pubDate>
		<guid isPermaLink="false">http://blog.everythingflex.com/2007/06/18/simple-drag-and-drop-air/#comment-30366</guid>
		<description>Due to hardcoding at the line no 52:
if(Capabilities.os.search("Mac") &#62;= 0){
                 i.source = "file://" + nativePath;
} else {
                    i.source = nativePath;
}
these kind of applications will not work on linux.

Either you could have made the similar check for linux or could have written it like this:
if(Capabilities.os.search("Win") &#62;= 0){
                    i.source = nativePath;
} else {
                 i.source = "file://" + nativePath;
}

which will work on mac as well as linux</description>
		<content:encoded><![CDATA[<p>Due to hardcoding at the line no 52:<br />
if(Capabilities.os.search(&#8221;Mac&#8221;) &gt;= 0){<br />
                 i.source = &#8220;file://&#8221; + nativePath;<br />
} else {<br />
                    i.source = nativePath;<br />
}<br />
these kind of applications will not work on linux.</p>
<p>Either you could have made the similar check for linux or could have written it like this:<br />
if(Capabilities.os.search(&#8221;Win&#8221;) &gt;= 0){<br />
                    i.source = nativePath;<br />
} else {<br />
                 i.source = &#8220;file://&#8221; + nativePath;<br />
}</p>
<p>which will work on mac as well as linux</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joey Rivera</title>
		<link>http://blog.everythingflex.com/2007/06/18/simple-drag-and-drop-air/#comment-30327</link>
		<dc:creator>Joey Rivera</dc:creator>
		<pubDate>Thu, 30 Oct 2008 16:13:33 +0000</pubDate>
		<guid isPermaLink="false">http://blog.everythingflex.com/2007/06/18/simple-drag-and-drop-air/#comment-30327</guid>
		<description>Here is an example of drag and drop using AIR in Flash instead of Flex: http://www.joeyrivera.com/2008/uploader-phase-1/

The above is a personal tool I'm playing around with that allows a person to drag/drop a file or link into the app so it can then do something with it. If you need a more stripped down version with just the drag/drop functionality let me know via email/comments at the site.</description>
		<content:encoded><![CDATA[<p>Here is an example of drag and drop using AIR in Flash instead of Flex: <a href="http://www.joeyrivera.com/2008/uploader-phase-1/" rel="nofollow">http://www.joeyrivera.com/2008/uploader-phase-1/</a></p>
<p>The above is a personal tool I&#8217;m playing around with that allows a person to drag/drop a file or link into the app so it can then do something with it. If you need a more stripped down version with just the drag/drop functionality let me know via email/comments at the site.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Martin.Hristov</title>
		<link>http://blog.everythingflex.com/2007/06/18/simple-drag-and-drop-air/#comment-30041</link>
		<dc:creator>Martin.Hristov</dc:creator>
		<pubDate>Tue, 28 Oct 2008 08:51:50 +0000</pubDate>
		<guid isPermaLink="false">http://blog.everythingflex.com/2007/06/18/simple-drag-and-drop-air/#comment-30041</guid>
		<description>Hello.

I am tried to copy just the AS and put it in an application I build through Flash CS3. As I concluded, some of the used classes are part of Flex SDK.
I installed the above mentioned, but it seems not to give a damn.

Is there something specific you must do in order to import flex sdk classes in your flash applications?

Deep thanks to anyone who helps ;)

M.</description>
		<content:encoded><![CDATA[<p>Hello.</p>
<p>I am tried to copy just the AS and put it in an application I build through Flash CS3. As I concluded, some of the used classes are part of Flex SDK.<br />
I installed the above mentioned, but it seems not to give a damn.</p>
<p>Is there something specific you must do in order to import flex sdk classes in your flash applications?</p>
<p>Deep thanks to anyone who helps <img src='http://blog.everythingflex.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>M.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: chong</title>
		<link>http://blog.everythingflex.com/2007/06/18/simple-drag-and-drop-air/#comment-21374</link>
		<dc:creator>chong</dc:creator>
		<pubDate>Thu, 11 Sep 2008 17:00:46 +0000</pubDate>
		<guid isPermaLink="false">http://blog.everythingflex.com/2007/06/18/simple-drag-and-drop-air/#comment-21374</guid>
		<description>Hi,Rich Tretola

But it's work ! you can look this one http://forum.j2eemx.com/files/AIR/2008-09-12_forum.j2eemx.com.swf</description>
		<content:encoded><![CDATA[<p>Hi,Rich Tretola</p>
<p>But it&#8217;s work ! you can look this one <a href="http://forum.j2eemx.com/files/AIR/2008-09-12_forum.j2eemx.com.swf" rel="nofollow">http://forum.j2eemx.com/files/AIR/2008-09-12_forum.j2eemx.com.swf</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rich Tretola</title>
		<link>http://blog.everythingflex.com/2007/06/18/simple-drag-and-drop-air/#comment-21135</link>
		<dc:creator>Rich Tretola</dc:creator>
		<pubDate>Wed, 10 Sep 2008 11:24:04 +0000</pubDate>
		<guid isPermaLink="false">http://blog.everythingflex.com/2007/06/18/simple-drag-and-drop-air/#comment-21135</guid>
		<description>You can not drag an image from a traditional browser (Firefox, IE, etc) as this would violate browser sandbox restrictions.</description>
		<content:encoded><![CDATA[<p>You can not drag an image from a traditional browser (Firefox, IE, etc) as this would violate browser sandbox restrictions.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

