<?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: Copy Finder Path to Clipboard &#8211; Tip 2</title>
	<atom:link href="http://MacDeveloperTips.com/applescript/copy-finder-path-to-clipboard-tip-2.html/feed" rel="self" type="application/rss+xml" />
	<link>http://MacDeveloperTips.com/applescript/copy-finder-path-to-clipboard-tip-2.html</link>
	<description>Tips, tools and code for iPhone and Mac developers.</description>
	<lastBuildDate>Wed, 18 Jan 2012 21:06:56 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: beaverbee</title>
		<link>http://MacDeveloperTips.com/applescript/copy-finder-path-to-clipboard-tip-2.html/comment-page-1#comment-1102</link>
		<dc:creator>beaverbee</dc:creator>
		<pubDate>Mon, 26 Apr 2010 12:51:57 +0000</pubDate>
		<guid isPermaLink="false">http://MacDeveloperTips.com/applescript/copy-finder-path-to-clipboard-tip-2.html#comment-1102</guid>
		<description>Hey. If you you want a more clean/integrated solution, FinderPath may be worth a look:

http://finderpath.bahoom.de/</description>
		<content:encoded><![CDATA[<p>Hey. If you you want a more clean/integrated solution, FinderPath may be worth a look:</p>
<p><a href="http://finderpath.bahoom.de/" rel="nofollow">http://finderpath.bahoom.de/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paton Lewis</title>
		<link>http://MacDeveloperTips.com/applescript/copy-finder-path-to-clipboard-tip-2.html/comment-page-1#comment-1044</link>
		<dc:creator>Paton Lewis</dc:creator>
		<pubDate>Sun, 07 Feb 2010 21:45:55 +0000</pubDate>
		<guid isPermaLink="false">http://MacDeveloperTips.com/applescript/copy-finder-path-to-clipboard-tip-2.html#comment-1044</guid>
		<description>Thanks! That&#039;s exactly what I was looking for. I still can&#039;t believe the Finder doesn&#039;t have a feature like this yet. I added rjfvaac&#039;s modification, but unfortunately some applications mis-handle quoted paths in save-as dialogs and apparently treat the entire quoted string as a filename.</description>
		<content:encoded><![CDATA[<p>Thanks! That&#8217;s exactly what I was looking for. I still can&#8217;t believe the Finder doesn&#8217;t have a feature like this yet. I added rjfvaac&#8217;s modification, but unfortunately some applications mis-handle quoted paths in save-as dialogs and apparently treat the entire quoted string as a filename.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: rjfvaac</title>
		<link>http://MacDeveloperTips.com/applescript/copy-finder-path-to-clipboard-tip-2.html/comment-page-1#comment-767</link>
		<dc:creator>rjfvaac</dc:creator>
		<pubDate>Sat, 06 Jun 2009 01:16:33 +0000</pubDate>
		<guid isPermaLink="false">http://MacDeveloperTips.com/applescript/copy-finder-path-to-clipboard-tip-2.html#comment-767</guid>
		<description>Well, I&#039;ve just solved my little issue, after talking to a friend. I only needed to change your script from

&lt;code&gt;set the clipboard to currentPath&lt;/code&gt;

to:

&lt;code&gt;set the clipboard to &quot;\&quot;&quot; &amp; currentPath &amp; &quot;\&quot;&quot;&lt;/code&gt;

And all is perfect :D

Thanks again</description>
		<content:encoded><![CDATA[<p>Well, I&#8217;ve just solved my little issue, after talking to a friend. I only needed to change your script from</p>
<p><code>set the clipboard to currentPath</code></p>
<p>to:</p>
<p><code>set the clipboard to "\"" &amp; currentPath &amp; "\""</code></p>
<p>And all is perfect :D</p>
<p>Thanks again</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: rjfvaac</title>
		<link>http://MacDeveloperTips.com/applescript/copy-finder-path-to-clipboard-tip-2.html/comment-page-1#comment-766</link>
		<dc:creator>rjfvaac</dc:creator>
		<pubDate>Fri, 05 Jun 2009 21:42:08 +0000</pubDate>
		<guid isPermaLink="false">http://MacDeveloperTips.com/applescript/copy-finder-path-to-clipboard-tip-2.html#comment-766</guid>
		<description>Thanks for the script, it&#039;s very very useful! But I seem to have a little problem using it... When the folder has &quot; &quot; (spaces) and I want to copy the path to the Terminal, it isn&#039;t able to find the directory :-(

Is there any easy (or obvious) solution for this issue?

Thanks!
Ricardo</description>
		<content:encoded><![CDATA[<p>Thanks for the script, it&#8217;s very very useful! But I seem to have a little problem using it&#8230; When the folder has &#8221; &#8221; (spaces) and I want to copy the path to the Terminal, it isn&#8217;t able to find the directory :-(</p>
<p>Is there any easy (or obvious) solution for this issue?</p>
<p>Thanks!<br />
Ricardo</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sean</title>
		<link>http://MacDeveloperTips.com/applescript/copy-finder-path-to-clipboard-tip-2.html/comment-page-1#comment-631</link>
		<dc:creator>Sean</dc:creator>
		<pubDate>Fri, 16 Jan 2009 00:11:42 +0000</pubDate>
		<guid isPermaLink="false">http://MacDeveloperTips.com/applescript/copy-finder-path-to-clipboard-tip-2.html#comment-631</guid>
		<description>Thanks for this little tidbit.  Very handy.

One quick note, on my machine (Mac Pro, 10.5.6) I had to change the error dialog code so it looks like:

on finderErrorMsg()
	display dialog &quot;Unable to copy a path to the clipboard.
                      Make sure Finder is referencing a directory/folder
                      within the file system.&quot; with icon caution with title &quot;Error&quot;
	buttons(&quot;Ok&quot;)
end finderErrorMsg

Otherwise I&#039;d get an error that &quot;a icon can&#039;t go after buttons&quot; or something.</description>
		<content:encoded><![CDATA[<p>Thanks for this little tidbit.  Very handy.</p>
<p>One quick note, on my machine (Mac Pro, 10.5.6) I had to change the error dialog code so it looks like:</p>
<p>on finderErrorMsg()<br />
	display dialog &#8220;Unable to copy a path to the clipboard.<br />
                      Make sure Finder is referencing a directory/folder<br />
                      within the file system.&#8221; with icon caution with title &#8220;Error&#8221;<br />
	buttons(&#8220;Ok&#8221;)<br />
end finderErrorMsg</p>
<p>Otherwise I&#8217;d get an error that &#8220;a icon can&#8217;t go after buttons&#8221; or something.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: JessD</title>
		<link>http://MacDeveloperTips.com/applescript/copy-finder-path-to-clipboard-tip-2.html/comment-page-1#comment-555</link>
		<dc:creator>JessD</dc:creator>
		<pubDate>Tue, 30 Dec 2008 21:18:07 +0000</pubDate>
		<guid isPermaLink="false">http://MacDeveloperTips.com/applescript/copy-finder-path-to-clipboard-tip-2.html#comment-555</guid>
		<description>That is exactly what I was looking for; Thank you!</description>
		<content:encoded><![CDATA[<p>That is exactly what I was looking for; Thank you!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

