<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>MacMembrane &#187; AppleScript</title>
	<atom:link href="http://macmembrane.com/category/applescript/feed/" rel="self" type="application/rss+xml" />
	<link>http://macmembrane.com</link>
	<description>There are peels everywhere...</description>
	<lastBuildDate>Thu, 11 Jun 2009 09:05:10 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Hide Desktop Items With an AppleScript</title>
		<link>http://macmembrane.com/hide-desktop-items-with-an-applescript/</link>
		<comments>http://macmembrane.com/hide-desktop-items-with-an-applescript/#comments</comments>
		<pubDate>Wed, 03 Jun 2009 12:05:59 +0000</pubDate>
		<dc:creator>Peter</dc:creator>
				<category><![CDATA[AppleScript]]></category>
		<category><![CDATA[Interface]]></category>
		<category><![CDATA[MacMembrane AppleScripts]]></category>
		<category><![CDATA[desktop]]></category>
		<category><![CDATA[terminal]]></category>

		<guid isPermaLink="false">http://macmembrane.com/?p=1328</guid>
		<description><![CDATA[Very quickly hide desktop items and bring them back with a command.]]></description>
			<content:encoded><![CDATA[<p>Here are a pair of Finder <a href="http://macmembrane.com/macmembrane-applescripts/" title="MacMembrane AppleScripts | MacMembrane">AppleScripts</a> to hide all of your Desktop files. The first makes them disappear. The second brings them back.</p>
<h2>Hide Desktop Files</h2>
<pre class="brush: css">do shell script &quot;chflags hidden ~/Desktop/*&quot;</pre>
<h2>Reveal Desktop Files</h2>
<pre class="brush: css">do shell script &quot;chflags nohidden ~/Desktop/*&quot;</pre>
<p>Copy each script into its own Script Editor window and save them to ~/Library/Scripts. I wish I&#8217;d known about this trick sooner.</p>
]]></content:encoded>
			<wfw:commentRss>http://macmembrane.com/hide-desktop-items-with-an-applescript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A Faster Way to Open a MarsEdit Post Window</title>
		<link>http://macmembrane.com/a-faster-way-to-open-a-marsedit-post-window/</link>
		<comments>http://macmembrane.com/a-faster-way-to-open-a-marsedit-post-window/#comments</comments>
		<pubDate>Sat, 23 May 2009 09:11:00 +0000</pubDate>
		<dc:creator>Peter</dc:creator>
				<category><![CDATA[AppleScript]]></category>
		<category><![CDATA[Blogging]]></category>
		<category><![CDATA[MacMembrane AppleScripts]]></category>

		<guid isPermaLink="false">http://macmembrane.com/?p=1324</guid>
		<description><![CDATA[MarsEdit's blog selector and post manager is one of the things that makes the application such a joy to use. Here's an AppleScript to bypass it altogether.]]></description>
			<content:encoded><![CDATA[<p>Perhaps the biggest complaint that one could level against the blog editor <a href="http://www.red-sweater.com/marsedit/" title="MarsEdit 2 - Powerful Blog Publishing For Your Mac">MarsEdit</a> is the proliferation of windows that can overwhelm your screen when writing with the app. The primary post editing window, the preview window, the media manager and the main blog selector all have dedicated uses and with time one develops near ninja-like techniques for dealing with the app&#8217;s flourish across your desktop.</p>
<p>There is only one instance where MarsEdit&#8217;s windowy layout truly frustrates me. When I click on MarsEdit&#8217;s dock icon, the great majority of the time it&#8217;s because I have a flash idea and want to write a post. Instead of a fresh document window, however, I&#8217;m greeted with the blog manager window.</p>
<p><img src="http://macmembrane.com/wp-content/uploads/2009/05/me-blog-manage.png" alt="me-blog-manage.png" border="0" width="582" height="360" class="centered" /></p>
<p>Easily managing multiple blogs, saving local drafts and editing already published posts are surely some of the features that make MarsEdit a joy to use, but for me the application is about writing. When I hit the dock icon I want to be articulating my thoughts within seconds. The blog manager, for all its usefulness, pretty much just gets in the way.</p>
<p>Here&#8217;s an AppleScript that will open up a new document window and bypass the blog manager altogether:</p>
<pre class="brush: css">if appIsRunning(&quot;MarsEdit&quot;) then
	tell application &quot;MarsEdit&quot;
		set docCount to (count every document)
		if docCount is equal to 0 then
			launch
			close window &quot;MarsEdit&quot;
			make new document
			activate
		else
			tell document 1 to activate
		end if
	end tell
else
	tell application &quot;MarsEdit&quot;
		run
		close window &quot;MarsEdit&quot;
		make new document
		activate
	end tell
end if

on appIsRunning(appName)
	tell application &quot;System Events&quot; to (name of processes) contains appName
end appIsRunning</pre>
<p>I run all my scripts via the excellent script launcher <a href="http://www.red-sweater.com/fastscripts/" title="FastScripts">FastScripts</a>, but a <a href="http://www.blacktree.com/" title="Blacktree">QuickSilver</a> trigger would work just as well. If the above script can save just one thought from evaporating into the ether before there&#8217;s a medium ready to capture it, I&#8217;ll consider it a success.</p>
]]></content:encoded>
			<wfw:commentRss>http://macmembrane.com/a-faster-way-to-open-a-marsedit-post-window/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A Side-by-Each AppleScript for Safari&#8217;s Tabs</title>
		<link>http://macmembrane.com/a-side-by-each-applescript-for-safaris-tabs/</link>
		<comments>http://macmembrane.com/a-side-by-each-applescript-for-safaris-tabs/#comments</comments>
		<pubDate>Thu, 21 May 2009 06:59:26 +0000</pubDate>
		<dc:creator>Peter</dc:creator>
				<category><![CDATA[AppleScript]]></category>
		<category><![CDATA[MacMembrane AppleScripts]]></category>
		<category><![CDATA[safari]]></category>
		<category><![CDATA[tabs]]></category>

		<guid isPermaLink="false">http://macmembrane.com/?p=1320</guid>
		<description><![CDATA[The following AppleScript with take the current Safari tab and the tab to the immediate right and open them up ‘side by each’ for you to compare. Vive le Québec libre!]]></description>
			<content:encoded><![CDATA[<p>The following AppleScript will take the current Safari tab and the tab to the immediate right and open them up ‘side by each’ for you to compare. I don’t use it all too often, but it seems a handy thing to have in my Scripts folder.</p>
<pre class="brush: css">tell application &quot;Finder&quot; to set windSz to bounds of window of desktop

set w1 to item 1 of windSz
set w2 to item 3 of windSz
set h1 to item 2 of windSz
set h2 to item 4 of windSz

set pg1size to {(w2 - (w2 * 0.95)), (h1 + (h2 - (h2 * 0.9))), (w2 * 0.495), (h2 * 0.9)}

set pg2size to {(w2 * 0.505), (h1 + (h2 - (h2 * 0.9))), (w2 * 0.95), (h2 * 0.9)}

tell application &quot;Safari&quot;
	activate
	set tabNo to index of last tab of front window
	set firstURL to URL of document 1
	close current tab of first item of windows
	set secondURL to URL of document 1
	make new document
	set URL of document 1 to firstURL
	set bounds of window 1 to pg1size
	set bounds of window 2 to pg2size
end tell
</pre>
<p>One obvious way to improve this script would be to take advantage of Safari’s “Move Tab to New Window” option in the Window menu of the application, since this command separates the the tabs but does not reload the page, making it super fast. As far as I can tell, however, this feature is not currently exposed to AppleScript, and so the script above will reload the page that is separated off from the main window. It works well otherwise.</p>
<p><object width="581" height="363"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=4744105&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=ac0000&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=4744105&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=ac0000&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="581" height="363"></embed></object></p>
<p>(Dramatic element added by <a href="http://www.amazon.com/Furr-Blitzen-Trapper/dp/B001CVCBBW/ref=pd_bxgy_m_img_c/190-3975807-5967261" title="Amazon.com: Furr: Blitzen Trapper: Music">Blitzen Trapper</a>.)</p>
<p>(By the way, to any French Canadian readers, please don’t take offense to the title of this post. Vive le Québec libre!)</p>
]]></content:encoded>
			<wfw:commentRss>http://macmembrane.com/a-side-by-each-applescript-for-safaris-tabs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>5 Things in My Dropbox</title>
		<link>http://macmembrane.com/5-things-in-my-dropbox/</link>
		<comments>http://macmembrane.com/5-things-in-my-dropbox/#comments</comments>
		<pubDate>Tue, 31 Mar 2009 09:18:59 +0000</pubDate>
		<dc:creator>Peter</dc:creator>
				<category><![CDATA[AppleScript]]></category>
		<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Commentary]]></category>
		<category><![CDATA[Online]]></category>
		<category><![CDATA[Productivity]]></category>
		<category><![CDATA[1password]]></category>
		<category><![CDATA[dropbox]]></category>
		<category><![CDATA[fastscripts]]></category>
		<category><![CDATA[marsedit]]></category>
		<category><![CDATA[sync]]></category>
		<category><![CDATA[taskpaper]]></category>
		<category><![CDATA[textexpander]]></category>

		<guid isPermaLink="false">http://macmembrane.com/?p=1045</guid>
		<description><![CDATA[Dropbox is a service/application that lets you sync files, folders or whatever with an online server and, by extension, between your Macs. Here are a few things that I keep synced between my two Macs with the help of Dropbox.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.getdropbox.com/" title="Dropbox - Home - Secure backup, sync and sharing made easy."><img class="alignright" align="right" src="http://macmembrane.com/wp-content/uploads/2009/03/dropbox-logo-home.gif" alt="dropbox_logo_home.gif" border="0" width="310" height="77" align="right" /></a><a href="http://www.getdropbox.com/" title="Dropbox - Home - Secure backup, sync and sharing made easy.">Dropbox</a> is a service/application that lets you sync files, folders or whatever with an online server and, by extension, between your Macs. In my estimation, it&#8217;s one of the greatest inventions of all time. Amazingly, it&#8217;s free.</p>
<p>Dropbox is becoming more popular and they have an <a href="http://www.getdropbox.com/screencast" title="Dropbox - Screencast - Secure backup, sync and sharing made easy.">excellent video tutorial</a> up at their site that explains the fundamentals of the program, so I&#8217;m not going to waste words here describing how it works. Instead, I&#8217;ll talk about five things that I keep synced between my two Macs with the help of Dropbox. I hope it gives you some ideas.</p>
<h2>My AppleScripts</h2>
<p><a href="http://www.red-sweater.com/fastscripts/index.html" title="FastScripts"><img align="left" class="alignleft" src="http://macmembrane.com/wp-content/uploads/2009/03/fastscripts.png" alt="FastScripts.png" border="0" width="100" height="100" align="left" /></a>As far as I&#8217;m concerned, any action that requires more than a total of two mouse clicks and will be done more than once is a good candidate for an AppleScript. Many of my scripts are no more than an few lines long. But even such a small amount of code, when run repeatedly via a keystroke over a long period, will rescue a significant portion of my life from the doldrums of repetitive drudgery. I use <a href="http://www.red-sweater.com/fastscripts/index.html" title="FastScripts">FastScripts</a> to run my scripts.</p>
<h2>My TextExpander Snippets</h2>
<p><a href="http://www.smileonmymac.com/TextExpander/" title="TextExpander: Mac Typing Shortcut Utility Saves You Time!"><img align="left" class="alignleft" src="http://macmembrane.com/wp-content/uploads/2009/03/autotextexpander-icon1.png" alt="autotextexpander-icon.png" border="0" width="100" height="100" align="left" /></a>What AppleScript is for repetitive tasks, <a href="http://www.smileonmymac.com/TextExpander/" title="TextExpander: Mac Typing Shortcut Utility Saves You Time!">TextExpander</a> is for repetitive typing. I <a href="http://macmembrane.com/replace-inquisitor-in-safari-4-beta-with-textexpander/" title="Replace Inquisitor in Safari 4 Beta with TextExpander | MacMembrane">recently wrote about</a> how to use TextExpander to perform custom searches from Safari&#8217;s location bar and since then I&#8217;ve become completely addicted to the method. In the past I&#8217;ve used TextExpander primarily when developing new websites, but these custom URL searches have suddenly made TE more important to me than every before.</p>
<h2>My 1Password Keychain</h2>
<p><a href="http://agilewebsolutions.com/products/1Password" title="Password Manager + Automatic Form Filler for Mac OS X"><img align="left" class="alignleft" src="http://macmembrane.com/wp-content/uploads/2009/03/1password.png" alt="1Password.png" border="0" width="100" height="100" align="left" /></a>The web is a dangerous place I&#8217;m told. <a href="http://agilewebsolutions.com/products/1Password" title="Password Manager + Automatic Form Filler for Mac OS X">1Password</a> keeps you a little bit safer by allowing you to create crazy strong and unique logins for every site you visit and save them in its custom 1Password keychain. The only problem with this solution is that if you&#8217;re ever on a computer without 1Password, you&#8217;re pretty much out of luck for logging in anywhere. By keeping 1Password in sync across your Macs, you remove this obstacle. Unless, that is, you&#8217;re forced to use a PC at work, in which case you&#8217;re out of luck.</p>
<h2>My TaskPaper To Dos</h2>
<p><a href="http://www.hogbaysoftware.com/products/taskpaper" title="TaskPaper — Simple to-do list software"><img align="left" class="alignleft" src="http://macmembrane.com/wp-content/uploads/2009/03/taskpaper.png" alt="TaskPaper.png" border="0" width="100" height="100" align="left" /></a>If you work on multiple Macs, having your To Dos synced across machines is a no brainer. <a href="http://macmembrane.com/use-geektool-to-display-taskpaper-lists-on-your-desktop/" title="Use GeekTool to Display TaskPaper Lists on Your Desktop | MacMembrane">As I&#8217;ve written</a>, I use HogBay Software&#8217;s dead simple <a href="http://www.hogbaysoftware.com/products/taskpaper" title="TaskPaper — Simple to-do list software">TaskPaper</a> to keep track of my pending chores and sudden inspirations, and while I do very much like the uncluttered and themable UI, the main reason I love the application is the plain text format in which it stores your notes. Total portability and compatibility with any app that can read .txt. It&#8217;s pure convenience.</p>
<h2>My MarsEdit Drafts Folder and Preferences</h2>
<p><a href="http://www.red-sweater.com/marsedit/" title="MarsEdit 2 - Powerful Blog Publishing For Your Mac"><img align="left" class="alignleft" src="http://macmembrane.com/wp-content/uploads/2009/03/marsedit.png" alt="MarsEdit.png" border="0" width="100" height="100" align="left" /></a>Though I use TextEdit for the majority of my writing needs, I turn to <a href="http://www.red-sweater.com/marsedit/" title="MarsEdit 2 - Powerful Blog Publishing For Your Mac">MarsEdit</a> when it&#8217;s time to <a href="http://macmembrane.com/2-applescripts-to-simplify-your-marsedit-workflow/" title="2 AppleScripts to Simplify Your MarsEdit Workflow | MacMembrane">add some markup</a> and <a href="http://macmembrane.com/search-compfight-from-marsedit-with-applescript/" title="Search CompFight From MarsEdit with AppleScript | MacMembrane">images</a> to my words before sending them up to the web. MarsEdit allows you to store local drafts of your posts and see exactly how they will look on your site even without an internet connection. Keeping all my drafts as well as my custom macros synced up between Macs really is a necessity for me.</p>
<h2>Your Dropbox</h2>
<p><a href="http://www.getdropbox.com/" title="Dropbox - Home - Secure backup, sync and sharing made easy."><img class="alignright" align="right" src="http://macmembrane.com/wp-content/uploads/2009/03/dropbox.png" alt="Dropbox.png" border="0" width="100" height="100" align="right" /></a>This is of course my personal list of files and folders that I sync using Dropbox, and you likely have a very different set of apps which are critical to what you do on your computer. So in that case, are you a Dropbox user? Has it improved your life like it has mine? Doing something interesting with it? If so, let us know about it in the comments. And if not, hopefully this article has given you some ideas.</p>
]]></content:encoded>
			<wfw:commentRss>http://macmembrane.com/5-things-in-my-dropbox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get the Word Count of a TextEdit Document in Growl</title>
		<link>http://macmembrane.com/get-the-word-count-of-a-textedit-document-in-growl/</link>
		<comments>http://macmembrane.com/get-the-word-count-of-a-textedit-document-in-growl/#comments</comments>
		<pubDate>Fri, 27 Mar 2009 00:33:02 +0000</pubDate>
		<dc:creator>Peter</dc:creator>
				<category><![CDATA[AppleScript]]></category>
		<category><![CDATA[Blogging]]></category>
		<category><![CDATA[MacMembrane AppleScripts]]></category>
		<category><![CDATA[Productivity]]></category>
		<category><![CDATA[growl]]></category>
		<category><![CDATA[textedit]]></category>
		<category><![CDATA[writing]]></category>

		<guid isPermaLink="false">http://macmembrane.com/?p=1033</guid>
		<description><![CDATA[Add a simple feature to TextEdit via AppleScript and Growl.]]></description>
			<content:encoded><![CDATA[<p><img align="left" class="alignleft" src="http://macmembrane.com/wp-content/uploads/2009/03/autotextedit.png" alt="TextEdit.png" border="0" width="94" height="95" align="left" />Whether it be for MacMembrane or word-smithing that I actually get paid for, I do almost all of my writing in TextEdit. The beauty of TextEdit is its lightweight simplicity as well as the platform/application portability of plaintext files.</p>
<p>One useful feature common to most other writing apps is a word count calculator. Why Apple doesn&#8217;t include this simplest of features in their simplest writing app is a mystery to me (has anyone ever upgraded to Pages for word count alone?). But fortunately it&#8217;s easy enough to add word count to TextEdit via AppleScript and have it displayed by a <a href="http://growl.info/" title="Growl">Growl</a> notification. Here&#8217;s how it looks and the script to make it happen:</p>
<h2>The Script</h2>
<pre class="brush: css">tell application &quot;GrowlHelperApp&quot;
	tell application &quot;TextEdit&quot;
		activate
		set wrdCnt to count words of document 1
	end tell
	set defaultNotification to &quot;TextEdit Word Count:&quot;
	set myAllNotesList to {defaultNotification}
	register as application defaultNotification all notifications myAllNotesList ¬
		default notifications {defaultNotification} icon of application &quot;TextEdit.app&quot;
	notify with name defaultNotification title ¬
		defaultNotification description &quot;Roughly &quot; &amp; wrdCnt ¬
		application name defaultNotification

end tell</pre>
<p><img class="alignright" align="right" src="http://macmembrane.com/wp-content/uploads/2009/03/autote-word-count.png" alt="TE-word-count.png" border="0" width="328" height="89" align="right" />There isn&#8217;t anything really special here, but it&#8217;s a useful little script to have in your toolbox. Let me know if you see anyway the script can be improved or made more useful.</p>
<p>Download <a href="http://growl.info/" title="Growl">Growl</a>, a free and unintrusive event notification application for your Mac.</p>
]]></content:encoded>
			<wfw:commentRss>http://macmembrane.com/get-the-word-count-of-a-textedit-document-in-growl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Distraction Free Writing with TextEdit and BackDrop</title>
		<link>http://macmembrane.com/distraction-free-writing-with-textedit-and-backdrop/</link>
		<comments>http://macmembrane.com/distraction-free-writing-with-textedit-and-backdrop/#comments</comments>
		<pubDate>Tue, 24 Mar 2009 13:37:56 +0000</pubDate>
		<dc:creator>Peter</dc:creator>
				<category><![CDATA[AppleScript]]></category>
		<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Interface]]></category>
		<category><![CDATA[MacMembrane AppleScripts]]></category>
		<category><![CDATA[Productivity]]></category>
		<category><![CDATA[backdrop]]></category>
		<category><![CDATA[freeware]]></category>
		<category><![CDATA[textedit]]></category>
		<category><![CDATA[writing]]></category>

		<guid isPermaLink="false">http://macmembrane.com/?p=1027</guid>
		<description><![CDATA[TUAW has a neat little write up on using TextEdit plus BackDrop to make a minimalist, distraction free writing environment. I quite like the idea, so I wrote up an AppleScript to automate the process.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.tuaw.com/2009/03/23/create-a-clutter-free-writing-environment-for-free/" title="Create a clutter-free writing environment for free">TUAW</a> has a neat little write up on using TextEdit plus <a href="http://www.johnhaney.com/backdrop/" title="John Haney Software - Backdrop; Apps for Mac OS X and iPhone">BackDrop</a> to make a minimalist, distraction free writing environment. I quite like the idea. Have a look:</p>
<p>
<div style="text-align:center;"><img src="http://macmembrane.com/wp-content/uploads/2009/03/autote-fs-desktop.png" alt="te-fs-desktop.png" border="0" width="544" height="340" /></div>
</p>
<p>But as every would-be writer knows, getting started is half the battle. To ease the friction of entering into this &#8216;distraction free&#8217; scenario, I made a little AppleScript to give you one less excuse.</p>
<pre class="brush: css">tell application &quot;Finder&quot; to set windSz to bounds of window of desktop

set w1 to item 1 of windSz
set w2 to item 3 of windSz
set h1 to item 2 of windSz
set h2 to item 4 of windSz

set nw2 to (w2 * 0.7)
set nh2 to (h2 * 0.9)

set nw1 to (w2 - nw2)
set nh1 to ((h2 - nh2) - 20)

tell application &quot;Backdrop&quot; to activate

delay 0.1

tell application &quot;TextEdit&quot;
	activate
	set winNo to (count windows)
	if winNo is less than 1 then
		make new document
	end if
	set bounds of window 1 to {nw1, nh1, nw2, nh2}
end tell</pre>
<h2>What Does the Script Do?</h2>
<p>Please have a look for yourself.</p>
<p>
<div align="center"><object width="530" height="331"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=3832835&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=00ADEF&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=3832835&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=00ADEF&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="530" height="331"></embed></object></div>
</p>
<h2>How Does the Script Work?</h2>
<p>The above bit of AppleScript first checks your monitor size and does some calculations to determine an appropriate size for a TextEdit window. Secondly, it checks if you have a TextEdit document open. If so, it grabs it and resizes it in front of BackDrop. If not, it makes you a new one. It&#8217;s quite simple and, in my opinion doesn&#8217;t require much explanation. Let me know in the comments if you disagree.</p>
<p>Download <a href="http://www.johnhaney.com/backdrop/" title="John Haney Software - Backdrop; Apps for Mac OS X and iPhone">BackDrop</a>. It&#8217;s freeware.</p>
]]></content:encoded>
			<wfw:commentRss>http://macmembrane.com/distraction-free-writing-with-textedit-and-backdrop/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Quickly Extract a Shortened URL for Anything on the iTunes App Store</title>
		<link>http://macmembrane.com/quickly-extract-a-shortened-url-for-anything-on-the-itunes-app-store/</link>
		<comments>http://macmembrane.com/quickly-extract-a-shortened-url-for-anything-on-the-itunes-app-store/#comments</comments>
		<pubDate>Wed, 11 Feb 2009 03:28:51 +0000</pubDate>
		<dc:creator>Peter</dc:creator>
				<category><![CDATA[AppleScript]]></category>
		<category><![CDATA[Blogging]]></category>
		<category><![CDATA[MacMembrane AppleScripts]]></category>
		<category><![CDATA[Mobile Touch]]></category>
		<category><![CDATA[Online]]></category>
		<category><![CDATA[Productivity]]></category>
		<category><![CDATA[app-store]]></category>
		<category><![CDATA[iTunes]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://macmembrane.com/?p=947</guid>
		<description><![CDATA[I download and try lots of apps from the App Store. When I like one enough that I want to broadcast my find to the world, my first stop is Twitter. Here is the fastest way I know of to get App Store links onto the clipboard in a Twitter ready format.]]></description>
			<content:encoded><![CDATA[<p><img class="alignright" align="right" src="http://macmembrane.com/wp-content/uploads/2009/02/autoapp-store.png" alt="app_store.png" border="0" width="110" height="107" align="right" />I download and try lots of apps from the App Store. When I like one enough that I want to broadcast my find to the world, my first stop is <a href="http://twitter.com/PeterVk" title="Twitter / PeterVk">Twitter</a>.</p>
<p>Transforming the long and complicated URL from the App Store into an acceptable Twitter form, however, is a somewhat convoluted process. First open up a plain text TextEdit window and drag the app&#8217;s icon from iTunes onto the document. Next, open up <a href="http://bit.ly/" title="bit.ly, a simple url shortener">bit.ly</a> (or your favorite URL shortening service) in Safari, paste in the URL open in TextEdit to shorten it. Copy your new short link to the clipboard and you&#8217;re set to post to Twitter. (And then you can close the bit.ly page and quit TextEdit without saving&#8230;)</p>
<p>This process is prohibitively cumbersome. I cobbled together the following AppleScript to ease the pain of posting shortened App Store URLs to Twitter.</p>
<pre class="brush: css">on open appURL
	tell application &quot;Finder&quot;
		set ClipURL to location of internet location file (appURL as text)
		ignoring case
			if ((characters 1 through 4 of ClipURL as string) is not &quot;http&quot;) then
				return &quot;Malformed URL.&quot;
			else
				set curlCMD to ¬
					&quot;curl --stderr /dev/null \&quot;http://bit.ly/api?url=&quot; &amp; ClipURL &amp; &quot;\&quot;&quot;

				set bitlyURL to (do shell script curlCMD)

				set the clipboard to bitlyURL
				move appURL to the trash

				tell application &quot;GrowlHelperApp&quot;
					set defaultNotification to &quot;URL Shortened&quot;
					set myAllNotesList to {defaultNotification}
					register as application defaultNotification all notifications myAllNotesList ¬
						default notifications {defaultNotification} icon of application &quot;Safari.app&quot;
					notify with name defaultNotification title ¬
						defaultNotification description ¬
						&quot;Your bit.ly URL is on the clipboard and ready to paste.&quot; application name defaultNotification

				end tell

			end if
		end ignoring
	end tell
end open</pre>
<h2>How to Use the Script</h2>
<p>To set up the script, first copy the code into Script Editor and <strong>save it as an Application</strong> somewhere you&#8217;ll have easy access to it (the Desktop is a good place). Once your script is saved, using it is easy. Drag your link from iTunes out onto the desktop. Now drag it one more time onto the droplet. The URL will be shortened and put on the clipboard and the webloc from iTunes will be moved to the trash.</p>
<p>It&#8217;s really useful, although a little difficult to explain. This short video illustrates what the script does.</p>
<p>
<div align="center"><object width="530" height="332"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=3161506&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=00ADEF&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=3161506&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=00ADEF&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="530" height="332"></embed></object></div>
</p>
<p>I created this script using two sources. AppleScript droplets cannot handle URLs dropped straight from Safari (or iTunes) so it&#8217;s necessary to drop them into the Finder first. To get the droplet to recognize the .webloc file I used the code posted <a href="http://forum.soft32.com/mac/URL-Webloc-drop-ftopict39081.html" title="URL / Webloc drop">here</a> by an unknown forum member. To convert the URL using bit.ly, I used <a href="http://www.livedigitally.com/2008/07/23/how-to-automatic-url-shortening-with-bitly-and-textexpander/" title="LIVEdigitally » Blog Archive » How-to: Automatic URL Shortening with Bit.ly and TextExpander">Jonathan Berger&#8217;s TextExpander script</a>.</p>
<p>If you know a better way to get App Store URLs, let me know in the comments. For the moment, I&#8217;m quite happy with this method.</p>
]]></content:encoded>
			<wfw:commentRss>http://macmembrane.com/quickly-extract-a-shortened-url-for-anything-on-the-itunes-app-store/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Scripts and Tricks for Twitterrific</title>
		<link>http://macmembrane.com/scripts-and-tricks-for-twitterrific/</link>
		<comments>http://macmembrane.com/scripts-and-tricks-for-twitterrific/#comments</comments>
		<pubDate>Sat, 07 Feb 2009 15:49:41 +0000</pubDate>
		<dc:creator>Peter</dc:creator>
				<category><![CDATA[AppleScript]]></category>
		<category><![CDATA[Blogging]]></category>
		<category><![CDATA[MacMembrane AppleScripts]]></category>
		<category><![CDATA[Online]]></category>
		<category><![CDATA[Productivity]]></category>
		<category><![CDATA[Applications]]></category>
		<category><![CDATA[fast scripts]]></category>
		<category><![CDATA[shortcut]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[twitterrific]]></category>

		<guid isPermaLink="false">http://macmembrane.com/?p=936</guid>
		<description><![CDATA[While we wait for a power user release of Twitterrific, here are a few of my own tricks and scripts that make the little app more usable for me.]]></description>
			<content:encoded><![CDATA[<p><a href="http://iconfactory.com/software/twitterrific" title="Iconfactory : Software : Twitterrific"><img class="alignright" align="right" src="http://macmembrane.com/wp-content/uploads/2009/02/autotwitterrific.png" alt="Twitterrific.png" border="0" width="100" height="100" align="right" /></a>Recently I read <a href="http://www.macworld.com/article/138566/2009/01/twitterrific_applescript.html?lsrc=rss_main" title="Getting geeky with Twitterrific and AppleScript | Mac Word | Macworld">an excellent article on Macworld</a> detailing some of the lesser know features of the Icon Factory&#8217;s <a href="http://iconfactory.com/software/twitterrific" title="Iconfactory : Software : Twitterrific">Twitterrific</a>. There are definitely some great tips here, but what resonated most from the article was Snell&#8217;s involved and almost personal relationship with the Twitterrific:</p>
<p>
<blockquote>There are a lot of Twitter apps for the Mac. I’ve tried most of them, but I keep coming back to Twitterrific. Its simple interface does what I want, when I want. Some of the competitors offer interesting features, but none of them work well enough to tear me away from Twitterrific. I do have a wish-list for Twitterrific that’s about a mile long—but again, that’s another story. Despite my recognition of its flaws, Twitterrific’s the Twitter app that works the best for me.</p></blockquote>
<p>I couldn&#8217;t agree more with this sentiment. While we wait for a power user release of Twitterrific, here are a few of my own tricks and scripts that make the little app more usable for me.</p>
<h2>See Realtime Responses to Any Tweeter</h2>
<p>Twitter is an excellent way to get questions answered by others who may have first hand experience with your query. Sometimes, however, it isn&#8217;t you who asks the question, but someone you follow.<img align="left" class="alignleft" src="http://macmembrane.com/wp-content/uploads/2009/02/autoall-replies.png" alt="all-replies.png" border="0" width="253" height="64" align="left" /> If you want to see how people are replying to everyone in your timeline you can enable this in Twitter&#8217;s preferences. To do so, go to the Notifications tab under your account settings and select Show Me &#8216;all @ replies&#8217; from the drop down menu. With this preference enabled, every time one of your followees is replied to, you&#8217;ll see the reply in Twitterrific.</p>
<p>Personally I don&#8217;t want to see everyone&#8217;s responses &#8211; it crowds Twitterrific. But there are still times when I do want to see responses to some particular Tweeter. When that happens, I use this simple script.</p>
<pre class="brush: css">tell application &quot;Twitterrific&quot; to set theTweeter ¬
	to the screen name of selection
try
	tell application &quot;System Events&quot;
		key code 53
	end tell
end try
tell application &quot;Safari&quot; to open location ¬
	&quot;http://search.twitter.com/search?q=&quot; &amp; ¬
	&quot;@&quot; &amp; theTweeter
</pre>
<p>To use the script, have the tweet selected in Twitterrific that you want to see replies to. When the script is run it will open a Safari page with all the responses to the selected Twitter user. Until Twitter provides a way to see responses to a particular <em>tweet</em> and not just a user, it&#8217;s the best solution I can think of.</p>
<h2>Open Links in a Tweet Via the Keyboard</h2>
<p>Twitterrific has fair keyboard support, but one action that always had me reaching of the mouse was opening links embedded in Tweets. This script will look for links in Tweets and open them in Safari.</p>
<pre class="brush: css">tell application &quot;Twitterrific&quot; to set theTweet to text of selection
try
	tell application &quot;System Events&quot;
		key code 53
	end tell
end try

-- John Maisey -- 29 Jan 2009 -- www.nhoj.co.uk --

set myResult to {}
-- Items that you expect will be after the end of the URL.
set terminatorList to {&quot; &quot;, &quot;&gt;&quot;, &quot;.&quot;, &quot;,&quot;, &quot;)&quot;, return, tab}
-- Split by &#039;http://&quot; and only get the second to the last parts.
set myList to my textItemDelimiterSplit(theTweet, &quot;http://&quot;, 2, -1)
-- Loop through list returned.
repeat with myItem in myList
	-- Loop through possible ending characters .
	repeat with myTerminator in terminatorList
		-- Split by the ending character.
		set myItem to my textItemDelimiterSplit(myItem, myTerminator, 1, 1)
	end repeat
	-- Add the result to an array.
	set myResult to myResult &amp; (&quot;http://&quot; &amp; myItem as text)
end repeat
try
	open location myResult
end try
on textItemDelimiterSplit(theText, theTID, theFrom, theTo)
	try
		set my text item delimiters to theTID
		set myReturn to text items theFrom thru theTo of theText
		set my text item delimiters to {&quot;&quot;}
		return myReturn
	on error
		return {}
	end try
end textItemDelimiterSplit</pre>
<p>An <strong>important note</strong>: The meat of this script was written by the very talented <a href="http://www.nhoj.co.uk/" title="Home | John Maisey">John Maisley</a>, the maker of <a href="http://www.nhoj.co.uk/icaldupedeleter/" title="iCal Dupe Deleter | John Maisey">iCal Dupe Deleter</a>. A big thanks to John for his help here. I have left his relevant in-script annotations intact.</p>
<h2>Translate a Tweet</h2>
<p>As I&#8217;ve mentioned before, I&#8217;m currently living in Korea and making some attempt to learn a bit of the language. To this end, I follow a few Korean speaking Twitter users. My Korean is coming along, but much of the time I still need some help from <a href="http://translate.google.com/" title="Google Translate">Google Translate</a>. The following script will translate (almost) any selected Tweet in Twitterrific into English using Google Translate.</p>
<pre class="brush: css">tell application &quot;Twitterrific&quot; to set transMe to text of selection
try
	tell application &quot;System Events&quot;
		key code 53
	end tell
end try
tell application &quot;Safari&quot; to open location ¬
	&quot;http://translate.google.com/translate_t?text=&quot; &amp; ¬
	transMe &amp; &quot;&amp;hl=en&amp;langpair=auto|en&amp;tbb=1&amp;ie=UTF-8#&quot;</pre>
<h2>Get the Permalink for a Tweet</h2>
<p>Occasionally I want the permalink for an interesting Tweet and there are two quick ways to get this in Twitterrific. Firstly, you can simply click and drag the Tweeter&#8217;s user picture associated with the Tweet onto Safari&#8217;s icon. Safari will open up the permalink in a new tab. If you don&#8217;t want to bother with the mouse, however, you can use this simple AppleScript:</p>
<pre class="brush: css">tell application &quot;Twitterrific&quot;
	set theId to the id of selection
	set scrnName to the screen name of selection
end tell
try
	tell application &quot;System Events&quot;
		key code 53
	end tell
end try
tell application &quot;Safari&quot; to open location ¬
	&quot;http://twitter.com/&quot; &amp; scrnName &amp; ¬
	&quot;/statuses/&quot; &amp; theId</pre>
<h2>Make Growl Notifications of Replies to Your Tweets Sticky</h2>
<p>Twitterrific has built in Growl support which throws up a notification whenever new tweets are retrieved in Twitterrific. If you can handle the distraction, this is the best way to keep real-time tabs on everything that&#8217;s happening in the Twitter lives of those you follow. Despite the &#8216;in your face&#8217; nature of Growl notifications, however, there is also a decided transience to their usefulness. One can become quiet immune to their presence when they&#8217;re always popping up. When someone replies to me on Twitter, I want to know it. Thankfully, it&#8217;s easy to enable &#8217;sticky&#8217; Growl notifications for Tweets which contain replies to you.</p>
<p>Open up Growl&#8217;s preference pane and navigate to the Applications tab. Find Twitterrific in the list of supported apps and double click it. Under the Notifications tab, select &#8216;Reply Arrived&#8217; and set Stay on Screen to &#8216;Always.&#8217; You can even add a sound to the notification if you like. With Growl set up this way, each time someone replies to you in Twitter that Tweet&#8217;s Growl notification will stick around until you intentionally dismiss it.</p>
<div style="text-align:center;"><img src="http://macmembrane.com/wp-content/uploads/2009/02/autogrowl-twitterrific.png" alt="growl-twitterrific.png" border="0" width="580" height="484" /></div>
<p>
<div align="center">*   *   *</div>
</p>
<p>My favorite way to run AppleScripts is <a href="http://www.red-sweater.com/fastscripts/" title="FastScripts">FastScripts</a>, which allows you to add keyboard shortcuts to scripts and limit their scope to application sensitive contexts. If you have any trouble with any of the scripts here let me know and I&#8217;ll see what I can do.</p>
<p>You can follow <a href="http://twitter.com/PeterVk" title="Twitter / PeterVk">@PeterVk</a> on Twitter (that&#8217;s me) or <a href="http://twitter.com/MacMembrane" title="Twitter / MacMembrane">@MacMembrane</a> to receive links to all the latest posts. If you have any of your own Twitterrific or Twitter tips post them in the comments for everyone to see. Happy Tweeting.</p>
]]></content:encoded>
			<wfw:commentRss>http://macmembrane.com/scripts-and-tricks-for-twitterrific/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Find Out Who&#8217;s Replying to Anyone on Twitter with AppleScript</title>
		<link>http://macmembrane.com/find-out-whos-replying-to-anyone-on-twitter-with-applescript/</link>
		<comments>http://macmembrane.com/find-out-whos-replying-to-anyone-on-twitter-with-applescript/#comments</comments>
		<pubDate>Mon, 08 Dec 2008 13:59:48 +0000</pubDate>
		<dc:creator>Peter</dc:creator>
				<category><![CDATA[AppleScript]]></category>
		<category><![CDATA[MacMembrane AppleScripts]]></category>
		<category><![CDATA[Online]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://macmembrane.com/?p=800</guid>
		<description><![CDATA[Someone ask a question on Twitter and you'd like to see the answers they get? Search for replies to the Tweeter with AppleScript.]]></description>
			<content:encoded><![CDATA[<p><img class="alignright" align="right" src="http://macmembrane.com/wp-content/uploads/2008/12/autotwitter-icon.png" alt="twitter-icon.png" border="0" width="90" align="right" />When someone I follow on <a href="http://twitter.com/PeterVk" title="Twitter / PeterVk">Twitter</a> asks a question and I have a response, more often than not I would like to see who else is responding to the question and how. From what I can tell, the easiest way to do this is to search for @user responses to the questioner on <a href="http://search.twitter.com/" title="Twitter Search">Twitter Search</a>. It is ideal by no means, but it gets me the info I&#8217;m looking for.</p>
<p>One of the reasons, however, why this method isn&#8217;t ideal is the sheer amount of click-copy-paste labour involved in executing the search. Here is a simple AppleScript that takes some of the mouse work out of finding responses to any user on Twitter.</p>
<h2>Search for Replies to Any Twitter User</h2>
<pre class="brush: css">tell application &quot;Safari&quot;
	try
		if URL of document 1 contains &quot;twitter.com&quot; then
			set theURL to URL of document 1
			set theTweeter to characters 20 through end of theURL as string
			open location ¬
				&quot;http://search.twitter.com/search?q=&quot; &amp; &quot;@&quot; &amp; theTweeter
		else
			activate me
			try
				set searchTerms to text returned of (display dialog ¬
					&quot;Couldn&#039;t get Twitter user. Want to search Twitter?&quot; default answer ¬
					&quot;&quot; buttons {&quot;no Thanks&quot;, &quot;Search&quot;} default button 2)
			end try
			open location ¬
				&quot;http://search.twitter.com/search?q=&quot; &amp; searchTerms
		end if
	end try
end tell</pre>
<h2>How to Use the Script</h2>
<p>Copy the script into a new Script Editor document (in Applications >> AppleScript), hit Compile and save it to your scripts folder (in ~/library/Scripts). Before you run the script, click on a Tweeter&#8217;s name in Twitter to load their recent tweets. Run the script and a new tab will open with all tweets containing that user&#8217;s Twitter handle. This way you can easily see who is responding to that user and how they&#8217;re responding to their question.</p>
<p>
<div align="center">*   *   *</div>
</p>
<p>Is there a better way to find responses to Tweeters? See some way to improve my sophomore scripting? Please let me know in the comments. If you&#8217;re into it, you can follow me on Twitter as <a href="http://twitter.com/PeterVk" title="Twitter / PeterVk">PeterVk</a> or subscribe to <a href="http://feeds.feedburner.com/MacMembrane">MacMembrane&#8217;s RSS feed</a> to keep up with the latest here.</p>
]]></content:encoded>
			<wfw:commentRss>http://macmembrane.com/find-out-whos-replying-to-anyone-on-twitter-with-applescript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Search CompFight From MarsEdit with AppleScript</title>
		<link>http://macmembrane.com/search-compfight-from-marsedit-with-applescript/</link>
		<comments>http://macmembrane.com/search-compfight-from-marsedit-with-applescript/#comments</comments>
		<pubDate>Thu, 04 Dec 2008 03:11:23 +0000</pubDate>
		<dc:creator>Peter</dc:creator>
				<category><![CDATA[AppleScript]]></category>
		<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Graphics]]></category>
		<category><![CDATA[MacMembrane AppleScripts]]></category>
		<category><![CDATA[Productivity]]></category>
		<category><![CDATA[compfight]]></category>
		<category><![CDATA[marsedit]]></category>

		<guid isPermaLink="false">http://macmembrane.com/?p=766</guid>
		<description><![CDATA[CompFight is the best way to quickly find Creative Commons images for use on your blog. Use this script to search CompFight right from MarsEdit.]]></description>
			<content:encoded><![CDATA[<p><img class="alignright" align="right" src="http://macmembrane.com/wp-content/uploads/2008/12/autoflickr-me.png" alt="flickr-me.png" border="0" width="128" height="128" align="right" />Often times I need an image for MacMembrane and an app icon or a screenshot won&#8217;t do the trick. To find relevant, interesting and legal images I use the amazing Flickr search tool <a href="http://www.compfight.com/" title="compfight + a flickr™ search tool">CompFight</a>.</p>
<h2>Use CompFight to Search Flickr</h2>
<p>CompFight does away with Flickr&#8217;s stingy 10 search results page and replaces it with browser wide thumbnail results based on your keywords. It also let&#8217;s you add <a href="http://creativecommons.org/" title="Creative Commons">Creative Commons</a>/Commercial paramarers to your search. I leave these on so that my results are narrowed to only images that I can use on my blog without violating copyright.</p>
<p><a href="http://macmembrane.com/wp-content/uploads/2008/12/autocomp-fight-lrg.png">
<div style="text-align:center;"><img src="http://macmembrane.com/wp-content/uploads/2008/12/autocomp-fight-sml.png" alt="comp-fight-sml.png" border="0" width="585" height="447" /></div>
<p></a></p>
<h2>Search CompFight from MarsEdit using AppleScript</h2>
<p>As I said, I use CompFight to search images for my blog, and when I&#8217;m writing for my blog I&#8217;m in <a href="http://www.red-sweater.com/marsedit/" title="MarsEdit 2 - Powerful Blog Publishing For Your Mac">MarsEdit</a>. Here is an <a href="http://macmembrane.com/macmembrane-applescripts/" title="MacMembrane AppleScripts | MacMembrane">AppleScript</a> to take the selected text from a MarsEdit and search CompFight for CC images.</p>
<pre class="brush: css">tell application &quot;MarsEdit&quot;
	activate
	try
		set needImg to selected text in document 1
	end try
end tell

try
	if needImg is equal to &quot;&quot; then
		activate me
		try
			set needImg to text returned of ¬
				(display dialog &quot;Enter keywords to search CompFight:&quot; with title ¬
					&quot;Nothing Selected&quot; default answer &quot;&quot; buttons ¬
					{&quot;No Thanks&quot;, &quot;Search&quot;} default button 2)
		end try

		my addSyntax(needImg)

	else

		my addSyntax(needImg)

	end if
end try

on addSyntax(needImg)
	if needImg is not &quot;&quot; then
		set AppleScript&#039;s text item delimiters to &quot; &quot;
		set theTextItems to text items of needImg
		set AppleScript&#039;s text item delimiters to &quot;%20&quot;
		set needImg to theTextItems as string
		set AppleScript&#039;s text item delimiters to {&quot;&quot;}
		open location &quot;http://www.compfight.com/#search_type=tags&amp;query=&quot; &amp; ¬
			needImg &amp; ¬
			&quot;&amp;commit=Search&amp;license=1%2C2%2C3%2C4%2C5%2C6&amp;original=1&amp;safe_search=3&quot;
	end if
end addSyntax</pre>
<h2>How to Use the Script</h2>
<p>Copy and paste the above code into Script Editor (in Applications >> AppleScript) and save it to your scripts folder. Select some text in MarsEdit and run the script. A new browser window will open with your search terms pre-populated. Because the script adds the CC parameters to your search, any image you see should be usable on your blog.</p>
<p>It isn&#8217;t the most complicated script in the world, but it does eliminate a few steps when searching for blog images, and eliminating simple but repetitive tasks is what AppleScript is all about.</p>
<p>Need some more MarsEdit AppleScripts and tricks? Try <a href="http://macmembrane.com/2-applescripts-to-simplify-your-marsedit-workflow/" title="2 AppleScripts to Simplify Your MarsEdit Workflow | MacMembrane">2 AppleScripts to Simplify Your MarsEdit Workflow</a> and <a href="http://macmembrane.com/marsedit-breaks-its-silence-with-sent-to-weblog-sound/" title="MarsEdit Breaks its Silence with ‘Sent to Weblog’ Sound | MacMembrane">MarsEdit Breaks it&#8217;s Silence with Sent to Weblog Sound</a>. And don&#8217;t forget to <a href="http://feeds.feedburner.com/MacMembrane">Subscribe to MacMembrane</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://macmembrane.com/search-compfight-from-marsedit-with-applescript/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

