<?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; Blogging</title>
	<atom:link href="http://macmembrane.com/category/blogging/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>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>Buried Blog-specific Preferences in MarsEdit</title>
		<link>http://macmembrane.com/buried-blog-specific-preferences-in-marsedit/</link>
		<comments>http://macmembrane.com/buried-blog-specific-preferences-in-marsedit/#comments</comments>
		<pubDate>Sun, 05 Apr 2009 13:26:20 +0000</pubDate>
		<dc:creator>Peter</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[marsedit]]></category>

		<guid isPermaLink="false">http://macmembrane.com/?p=1059</guid>
		<description><![CDATA[MarsEdit's marquee Post Preview feature makes the blogging workhorse a joy to use. Here's how to turn it off.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.red-sweater.com/marsedit/" title="MarsEdit 2 - Powerful Blog Publishing For Your Mac"><img class="alignright" align="right" src="http://macmembrane.com/wp-content/uploads/2009/04/marsedit1.png" alt="MarsEdit.png" border="0" width="110" height="110" align="right" /></a>I recently underwent the self-inflicted misfortune of deleting my <a href="http://www.red-sweater.com/marsedit/" title="MarsEdit 2 - Powerful Blog Publishing For Your Mac">MarsEdit</a> preferences folder. Thankfully, MarsEdit is dead simple to set up and so it didn’t take long to remake my blog preview template and re-add my custom markup tags, thus getting things almost exactly as they were before my adventure in stupidity.</p>
<p>I say “almost” here since a single inconsistency of experience annoyingly presented itself after all of my tweaking: MarsEdit’s post preview window would automatically open whenever I began a new post. I am a big fan of the post preview feature of ME, which allows you to see exactly how your post will look on your blog even as you write it offline. For longer articles, though, I generally don’t like to open the preview window until I have the better part of the post written; for shorter, link-based quips I’d rather not bother with it at all. Therefore, having the preview window launch each time I opened the editor soon became a frustrating annoyance. How to turn it off?</p>
<p><img align="left" class="alignleft" src="http://macmembrane.com/wp-content/uploads/2009/04/me-blog-settings.png" alt="me-blog-settings.png" border="0" width="246" height="308" align="left" />I was just about to cry for help on the developer’s forums when I found what I was looking for: MarsEdit’s well-hidden Blog-specific Settings in the Weblog menu. Switch to the “Composing” tab and turn the Post Preview option to “Defaults to Closed.” I was smiling again.</p>
<p>Another gem in these settings is the ability for ME to alert you if you are about to send your post up to the net without filling in the tags section, choosing categories, writing an excerpt, etc (you define what’s important to you). This is a really useful feature that would have saved me many times in the past from hitting send only to quickly realize that I’d left the post “uncategorized.”</p>
<p>I’d consider myself a moderate to heavy MarsEdit user and it thus shocks me somewhat that these settings were so difficult for me to find. There’s enough in these blog sensitive settings that every MarsEdit user would benefit from their being more accessible.</p>
]]></content:encoded>
			<wfw:commentRss>http://macmembrane.com/buried-blog-specific-preferences-in-marsedit/feed/</wfw:commentRss>
		<slash:comments>1</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>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>
		<item>
		<title>Set the Background Color of Preview to Match Your Blog</title>
		<link>http://macmembrane.com/set-the-background-color-of-preview-to-match-your-blog/</link>
		<comments>http://macmembrane.com/set-the-background-color-of-preview-to-match-your-blog/#comments</comments>
		<pubDate>Thu, 20 Nov 2008 10:29:42 +0000</pubDate>
		<dc:creator>Peter</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Graphics]]></category>
		<category><![CDATA[Productivity]]></category>
		<category><![CDATA[color]]></category>
		<category><![CDATA[preferences]]></category>
		<category><![CDATA[preview]]></category>

		<guid isPermaLink="false">http://macmembrane.com/?p=722</guid>
		<description><![CDATA[I often use the Instant Alpha tool in Preview to quickly extract transparent images for use on MacMembrane. Here is a quick way to make sure your images look as good on your blog as they do in Preview.]]></description>
			<content:encoded><![CDATA[<p><img align="left" class="alignleft" src="http://macmembrane.com/wp-content/uploads/2008/08/preview-icon1.png" alt="preview-icon.png" border="0" width="128" height="128" align="left" />I often use the <a href="http://macmembrane.com/create-icons-quickly-with-preview-and-img2icns/" title="Create Icons Quickly with Preview and Img2icns | MacMembrane">Instant Alpha tool</a> in <a href="http://macmembrane.com/tag/preview/" title="preview | MacMembrane">Preview</a> to quickly extract transparent images for use on MacMembrane. It&#8217;s quick and really easy to use. But sometimes it takes a few passes to get the image just right, and moreover it&#8217;s happened that I&#8217;ve uploaded an image to my blog image directory only to find that, against the background color of my blog, unwanted areas of the image have not been totally knocked out. It&#8217;s an annoyance having to take my image back into Preview to try again, not to mention having an indistinguishable duplicate in my image directory.</p>
<p>A quick solution I&#8217;ve found to greatly reduce this occurrence is to set the background color of Preview to that of my blog. This way, if some unremoved piece of background doesn&#8217;t appear against the grey background of Preview but will when seen against the background of MacMembrane, I&#8217;ll know it and save myself some hassle. Setting it up is easy.</p>
<p><img class="alignright" align="right" src="http://macmembrane.com/wp-content/uploads/2008/11/preview-colors.png" alt="preview-colors.png" border="0" width="227" height="152" align="right" />First open up your blog in Safari. Open Preview and open its preferences by hitting Cmd + , (comma) or select Preferences from the application menu. Under the General tab click on the Window Background sample and OS X&#8217;s ubiquitous color picker will pop up. Click on the magnifying glass and then on the background of your blog in Safari. Now Preview will give you an accurate representation of alpha images as they will appear once posted.</p>
<p>
<div align="center">*   *   *</div>
</p>
<p>Preview is one of those smallish apps included with OS X that packs much more power than it initially lets on. For simple tasks, the speed of Preview can&#8217;t be beat. I hope this small tweak helps you out.</p>
]]></content:encoded>
			<wfw:commentRss>http://macmembrane.com/set-the-background-color-of-preview-to-match-your-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MarsEdit Breaks its Silence with &#8216;Sent to Weblog&#8217; Sound</title>
		<link>http://macmembrane.com/marsedit-breaks-its-silence-with-sent-to-weblog-sound/</link>
		<comments>http://macmembrane.com/marsedit-breaks-its-silence-with-sent-to-weblog-sound/#comments</comments>
		<pubDate>Wed, 19 Nov 2008 00:29:24 +0000</pubDate>
		<dc:creator>Peter</dc:creator>
				<category><![CDATA[Audio]]></category>
		<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Interface]]></category>
		<category><![CDATA[Utilities]]></category>
		<category><![CDATA[growl]]></category>
		<category><![CDATA[marsedit]]></category>

		<guid isPermaLink="false">http://macmembrane.com/?p=712</guid>
		<description><![CDATA[Want MarsEdit to make a Mail.app like sound when it sends your blog post up to the web? No problem. Just use Growl.]]></description>
			<content:encoded><![CDATA[<p>When you send off an email in Mail.app, the application makes a satisfying sound when it has successfully sent your message. While savoring this little notification the other day, I thought it would be gratifying if MarsEdit could do something similar when it sent my posts up to MacMembrane. I <a href="http://twitter.com/PeterVk/status/1003652303" title="Twitter / PeterVk: @marsedit How about a 'suc ...">contacted the developer</a> (or, rather, the application itself!) on Twitter. Here is his/its response:</p>
<p>
<div style="text-align:center;"><img src="http://macmembrane.com/wp-content/uploads/2008/11/marsedit-twitter.png" alt="marsedit-twitter.png" border="0" width="517" height="68" /></div>
</p>
<p>Despite being somewhat embarrassed by this response (&#8216;Why didn&#8217;t I think of that myself?&#8217;), I was really happy with the suggestion because it meant the solution to my desire was very easily achieved. Here&#8217;s how to use Growl to make MarsEdit play a &#8216;Successfully Posted&#8217; sound. But first&#8230;</p>
<h2>What are these applications?</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/2008/08/marsedit-icon.png" alt="marsedit-icon.png" border="0" width="90" height="90" align="left" /></a><a href="http://www.red-sweater.com/marsedit/" title="MarsEdit 2 - Powerful Blog Publishing For Your Mac">MarsEdit</a> is a plain text blogging client for the Mac that has a wealth of features that should satisfy the needs of most bloggers. I&#8217;ve <a href="http://macmembrane.com/marsedit-premier-desktop-blogging-client/" title="MarsEdit - Premier Desktop Blogging Client for the Mac | MacMembrane">written extensively about MarsEdit</a> in the past so I won&#8217;t say too much about the application here other than to note that I&#8217;m a huge fan. If you want to see if MarsEdit is right for you then head over to <a href="http://www.red-sweater.com/products/index.html" title="Red Sweater - Amazing Mac Software">Red Sweater Software</a> to download a free 30 day trial. It&#8217;s 29.95 thereafter.</p>
<p>
<div class="clearstar">*</div>
<p><a href="http://growl.info/" title="Growl"><img align="left" class="alignleft" src="http://macmembrane.com/wp-content/uploads/2008/11/growl-icon.png" alt="growl-icon.png" border="0" width="90" height="90" align="left" /></a><a href="http://growl.info/" title="Growl">Growl</a> is a kind of all-purpose visual and audio notification utility for your Mac. Growl is supported by a slew of applications natively (I use &#8217;slew&#8217; because I can&#8217;t find a precise number on the web!) and many more by adding simple plugins. In short, Growl lets you know what&#8217;s happening with an application when it&#8217;s not in the front, everything from displaying incoming mail to alerting you to new tweets in <a href="http://iconfactory.com/software/twitterrific" title="Iconfactory : Software : Twitterrific">Twitterific</a>. Growl is freeware.</p>
<p>
<div class="clearstar">*</div>
<h2>Make them work together.</h2>
<p><img class="alignright" align="right" src="http://macmembrane.com/wp-content/uploads/2008/11/marsedit-growl.png" alt="marsedit-growl.png" border="0" width="328" height="89" align="right" />Like many apps, MarsEdit supports Growl notifications out of the box, letting you know if your new post has made it to your blog or been tripped up along the way. Because of this native support, it&#8217;s easy to add a sound to accompany the visual notification.</p>
<p>Open System Preferences and find the Growl preference pane at the bottom of the panel. Click on the Applications tab at the top of Growl&#8217;s preferences. Scroll down to find MarsEdit and double click the icon to edit the app&#8217;s alert preferences. Click on the Notifications tab. (Click the screenshot to enlarge.)</p>
<p><a href="http://macmembrane.com/wp-content/uploads/2008/11/me-gr-full.png" title="MarsEdit's Growl preferences"><img align="left" class="alignleft" src="http://macmembrane.com/wp-content/uploads/2008/11/growl-marsedit-prefs1.png" alt="growl-marsedit-prefs.png" border="0" width="326" height="273" align="left" /></a>MarsEdit supports Growl notifications for four of it&#8217;s common tasks: Finished Refreshing Weblog, Finished Uploading File and, the task that concerns us here, Finished Sending to Weblog. Select the latter from the drop down notification list and set the Play Sound drop down menu to whatever you&#8217;d like to hear when MarsEdit sends up your writing to the web. Now MarsEdit will make some noise when it posts to your blog. Satisfying!</p>
<p>
<div align="center">*   *   *</div>
</p>
<p>I&#8217;m quite pleased with this solution, although I do hope that MarsEdit adds a custom sound to its repertoire of features someday. Thanks to the developer for his ultra-fast, non-condesending reply on Twitter as well!</p>
<p>You can follow both <a href="http://twitter.com/marsedit" title="Twitter / marsedit">MarsEdit</a> and <a href="http://twitter.com/PeterVk" title="Twitter / PeterVk">myself</a> on Twitter. If you want to find some more great blogging tools, try <a href="http://macmembrane.com/10-applications-to-supercharge-your-mac-blogging-experience/" title="Convert Your Mac Into a Blogger’s Dream Machine | MacMembrane">Tools to Turn Your Mac into a Blogger&#8217;s Dream</a>. If you already use MarsEdit, you might like these <a href="http://macmembrane.com/2-applescripts-to-simplify-your-marsedit-workflow/" title="2 AppleScripts to Simplify Your MarsEdit Workflow | MacMembrane">Two AppleScripts to Simplify Your MarsEdit Workflow</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://macmembrane.com/marsedit-breaks-its-silence-with-sent-to-weblog-sound/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

