<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: Drag-n-Drop file into an AIR app</title>
	<atom:link href="http://brianchau.wordpress.com/2008/01/03/drag-n-drop-file-into-an-air-app/feed/" rel="self" type="application/rss+xml" />
	<link>http://brianchau.wordpress.com/2008/01/03/drag-n-drop-file-into-an-air-app/</link>
	<description>Welcome to my blogging page. Hope you will enjoy it.</description>
	<lastBuildDate>Thu, 12 Nov 2009 07:54:59 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: brianchau</title>
		<link>http://brianchau.wordpress.com/2008/01/03/drag-n-drop-file-into-an-air-app/#comment-1960</link>
		<dc:creator>brianchau</dc:creator>
		<pubDate>Tue, 05 May 2009 02:48:57 +0000</pubDate>
		<guid isPermaLink="false">http://brianchau.wordpress.com/2008/01/03/drag-n-drop-file-into-an-air-app/#comment-1960</guid>
		<description>Mitch, you can use the String class and its methods like substr() or substring() to extract the file name less the extension.</description>
		<content:encoded><![CDATA[<p>Mitch, you can use the String class and its methods like substr() or substring() to extract the file name less the extension.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mitch</title>
		<link>http://brianchau.wordpress.com/2008/01/03/drag-n-drop-file-into-an-air-app/#comment-1959</link>
		<dc:creator>Mitch</dc:creator>
		<pubDate>Tue, 05 May 2009 01:52:17 +0000</pubDate>
		<guid isPermaLink="false">http://brianchau.wordpress.com/2008/01/03/drag-n-drop-file-into-an-air-app/#comment-1959</guid>
		<description>Sorry Brian, I made a typo and couldnt delete the post,

Im wanting to get the file name by iteself without the .flv extension.

Cheers</description>
		<content:encoded><![CDATA[<p>Sorry Brian, I made a typo and couldnt delete the post,</p>
<p>Im wanting to get the file name by iteself without the .flv extension.</p>
<p>Cheers</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mitch</title>
		<link>http://brianchau.wordpress.com/2008/01/03/drag-n-drop-file-into-an-air-app/#comment-1958</link>
		<dc:creator>Mitch</dc:creator>
		<pubDate>Tue, 05 May 2009 01:49:24 +0000</pubDate>
		<guid isPermaLink="false">http://brianchau.wordpress.com/2008/01/03/drag-n-drop-file-into-an-air-app/#comment-1958</guid>
		<description>Hi Brian,

Firstly thank you for the insight above regarding drag and dropping in Air. Was great to see a stripped down simple code source for this to get my head around.

Just wondering if you tell me how I can display the draged file.name property with the files extension.

I have changed the case statement to this
path_txt.text = file.name;

this works however is there a way to just get the file name without the extension?

Cheers,</description>
		<content:encoded><![CDATA[<p>Hi Brian,</p>
<p>Firstly thank you for the insight above regarding drag and dropping in Air. Was great to see a stripped down simple code source for this to get my head around.</p>
<p>Just wondering if you tell me how I can display the draged file.name property with the files extension.</p>
<p>I have changed the case statement to this<br />
path_txt.text = file.name;</p>
<p>this works however is there a way to just get the file name without the extension?</p>
<p>Cheers,</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: KJ</title>
		<link>http://brianchau.wordpress.com/2008/01/03/drag-n-drop-file-into-an-air-app/#comment-1809</link>
		<dc:creator>KJ</dc:creator>
		<pubDate>Fri, 14 Nov 2008 15:09:13 +0000</pubDate>
		<guid isPermaLink="false">http://brianchau.wordpress.com/2008/01/03/drag-n-drop-file-into-an-air-app/#comment-1809</guid>
		<description>Interesting. Thanks for that.</description>
		<content:encoded><![CDATA[<p>Interesting. Thanks for that.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paeth.ClaudiusRaphael</title>
		<link>http://brianchau.wordpress.com/2008/01/03/drag-n-drop-file-into-an-air-app/#comment-1799</link>
		<dc:creator>Paeth.ClaudiusRaphael</dc:creator>
		<pubDate>Thu, 06 Nov 2008 02:23:55 +0000</pubDate>
		<guid isPermaLink="false">http://brianchau.wordpress.com/2008/01/03/drag-n-drop-file-into-an-air-app/#comment-1799</guid>
		<description>Due to the fact that AIR&#039;s intent is cross-OS-compatibility it is imaginable why AIR doesn&#039;t deliver the file-ending via script-function. Under non-Windows-OS&#039;s the file-ending is just used by some applications by parsing the file-name to quicken the check for the correct file-type. The system itself uses file-meta-descriptions or file-header-binary-information, while Windows is using the file-ending in most cases to direct the io-streaming of the files content to the right file-filter.

Just an explanation... Thought it might be helpful to know.

With best regards,

Paeth.ClaudiusRaphael, A3lyphe</description>
		<content:encoded><![CDATA[<p>Due to the fact that AIR&#8217;s intent is cross-OS-compatibility it is imaginable why AIR doesn&#8217;t deliver the file-ending via script-function. Under non-Windows-OS&#8217;s the file-ending is just used by some applications by parsing the file-name to quicken the check for the correct file-type. The system itself uses file-meta-descriptions or file-header-binary-information, while Windows is using the file-ending in most cases to direct the io-streaming of the files content to the right file-filter.</p>
<p>Just an explanation&#8230; Thought it might be helpful to know.</p>
<p>With best regards,</p>
<p>Paeth.ClaudiusRaphael, A3lyphe</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kj</title>
		<link>http://brianchau.wordpress.com/2008/01/03/drag-n-drop-file-into-an-air-app/#comment-1498</link>
		<dc:creator>kj</dc:creator>
		<pubDate>Thu, 03 Apr 2008 16:13:04 +0000</pubDate>
		<guid isPermaLink="false">http://brianchau.wordpress.com/2008/01/03/drag-n-drop-file-into-an-air-app/#comment-1498</guid>
		<description>Thanks Brian,
I used that method as a last resort. It just seemed a little bit untidy to me. I just assumed that LoaderInfo would contain that sort of information but it doesn&#039;t seem to.</description>
		<content:encoded><![CDATA[<p>Thanks Brian,<br />
I used that method as a last resort. It just seemed a little bit untidy to me. I just assumed that LoaderInfo would contain that sort of information but it doesn&#8217;t seem to.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: brianchau</title>
		<link>http://brianchau.wordpress.com/2008/01/03/drag-n-drop-file-into-an-air-app/#comment-1497</link>
		<dc:creator>brianchau</dc:creator>
		<pubDate>Wed, 02 Apr 2008 22:13:40 +0000</pubDate>
		<guid isPermaLink="false">http://brianchau.wordpress.com/2008/01/03/drag-n-drop-file-into-an-air-app/#comment-1497</guid>
		<description>KJ, if the filename is stored as a text variable, then I would use the String class method like Split() to look for the &quot;.&quot; character.</description>
		<content:encoded><![CDATA[<p>KJ, if the filename is stored as a text variable, then I would use the String class method like Split() to look for the &#8220;.&#8221; character.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: KJ</title>
		<link>http://brianchau.wordpress.com/2008/01/03/drag-n-drop-file-into-an-air-app/#comment-1495</link>
		<dc:creator>KJ</dc:creator>
		<pubDate>Wed, 02 Apr 2008 21:46:59 +0000</pubDate>
		<guid isPermaLink="false">http://brianchau.wordpress.com/2008/01/03/drag-n-drop-file-into-an-air-app/#comment-1495</guid>
		<description>Hi Brian. I was wondering if it was possible to get the file extension from a Loader? I&#039;m using a loader to load a file via a urlrequest but also need to access the file extension. Any ideas? 

Hope all is good.

KJ</description>
		<content:encoded><![CDATA[<p>Hi Brian. I was wondering if it was possible to get the file extension from a Loader? I&#8217;m using a loader to load a file via a urlrequest but also need to access the file extension. Any ideas? </p>
<p>Hope all is good.</p>
<p>KJ</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeroen Beckers</title>
		<link>http://brianchau.wordpress.com/2008/01/03/drag-n-drop-file-into-an-air-app/#comment-1185</link>
		<dc:creator>Jeroen Beckers</dc:creator>
		<pubDate>Tue, 08 Jan 2008 10:02:31 +0000</pubDate>
		<guid isPermaLink="false">http://brianchau.wordpress.com/2008/01/03/drag-n-drop-file-into-an-air-app/#comment-1185</guid>
		<description>Thanks!</description>
		<content:encoded><![CDATA[<p>Thanks!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
