<?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: An AppleScript to Duplicate the Current Tab in Safari</title>
	<atom:link href="http://macmembrane.com/an-applescript-to-duplicate-the-current-tab-in-safari/feed/" rel="self" type="application/rss+xml" />
	<link>http://macmembrane.com/an-applescript-to-duplicate-the-current-tab-in-safari/</link>
	<description>There are peels everywhere...</description>
	<lastBuildDate>Mon, 23 Aug 2010 20:29:03 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Peter</title>
		<link>http://macmembrane.com/an-applescript-to-duplicate-the-current-tab-in-safari/comment-page-1/#comment-248</link>
		<dc:creator>Peter</dc:creator>
		<pubDate>Thu, 04 Dec 2008 10:30:44 +0000</pubDate>
		<guid isPermaLink="false">http://macmembrane.com/?p=178#comment-248</guid>
		<description>Thanks MacTipper!

The non-GUI version is, of course, &lt;em&gt;faster&lt;/em&gt; than mine, which in the world of AppleScript also makes it &lt;em&gt;better&lt;/em&gt;.

Here is your script again for Safari users:

&lt;pre&gt;tell application &quot;Safari&quot;
	tell window 1
		set current tab to (make new tab ¬
			with properties {URL:(get URL of (current tab))})
	end tell
end tell&lt;/pre&gt;

Rock on.</description>
		<content:encoded><![CDATA[<p>Thanks MacTipper!</p>
<p>The non-GUI version is, of course, <em>faster</em> than mine, which in the world of AppleScript also makes it <em>better</em>.</p>
<p>Here is your script again for Safari users:</p>
<pre>tell application "Safari"
	tell window 1
		set current tab to (make new tab ¬
			with properties {URL:(get URL of (current tab))})
	end tell
end tell</pre>
<p>Rock on.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: MacTipper</title>
		<link>http://macmembrane.com/an-applescript-to-duplicate-the-current-tab-in-safari/comment-page-1/#comment-245</link>
		<dc:creator>MacTipper</dc:creator>
		<pubDate>Thu, 04 Dec 2008 05:14:15 +0000</pubDate>
		<guid isPermaLink="false">http://macmembrane.com/?p=178#comment-245</guid>
		<description>Oh, and I forgot to mention, you could just use Cmd-L, Cmd-Enter to achieve the same effect. :)</description>
		<content:encoded><![CDATA[<p>Oh, and I forgot to mention, you could just use Cmd-L, Cmd-Enter to achieve the same effect. :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: MacTipper</title>
		<link>http://macmembrane.com/an-applescript-to-duplicate-the-current-tab-in-safari/comment-page-1/#comment-244</link>
		<dc:creator>MacTipper</dc:creator>
		<pubDate>Thu, 04 Dec 2008 05:13:11 +0000</pubDate>
		<guid isPermaLink="false">http://macmembrane.com/?p=178#comment-244</guid>
		<description>Here&#039;s a non-UIScript script :) (which I think is Leopard only):

&lt;pre&gt;tell application &quot;Webkit&quot;
	tell window 1
		set current tab to (make new tab ¬
			with properties {URL:(get URL of (current tab))})
	end tell
end tell&lt;/pre&gt;

The hardest part was that you have to specify which window to open the tab in.

Via: http://bbs.macscripter.net/viewtopic.php?pid=100448</description>
		<content:encoded><![CDATA[<p>Here&#8217;s a non-UIScript script :) (which I think is Leopard only):</p>
<pre>tell application "Webkit"
	tell window 1
		set current tab to (make new tab ¬
			with properties {URL:(get URL of (current tab))})
	end tell
end tell</pre>
<p>The hardest part was that you have to specify which window to open the tab in.</p>
<p>Via: <a href="http://bbs.macscripter.net/viewtopic.php?pid=100448" rel="nofollow">http://bbs.macscripter.net/viewtopic.php?pid=100448</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>
