<?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>MyBlogSG.com &#187; MacBook Pro</title>
	<atom:link href="http://myblogsg.com/tag/macbook-pro/feed" rel="self" type="application/rss+xml" />
	<link>http://myblogsg.com</link>
	<description>My Thoughts on Wat&#039;s Up Around Me</description>
	<lastBuildDate>Wed, 25 Aug 2010 04:09:13 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>TextEdit Word Count with Automator</title>
		<link>http://myblogsg.com/textedit-word-count</link>
		<comments>http://myblogsg.com/textedit-word-count#comments</comments>
		<pubDate>Mon, 21 Jun 2010 05:23:01 +0000</pubDate>
		<dc:creator>Wassup</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Apple MacBook]]></category>
		<category><![CDATA[MacBook Pro]]></category>

		<guid isPermaLink="false">http://myblogsg.com/?p=682</guid>
		<description><![CDATA[I have been searching high and low for a TextEdit word count script and I found NanoCount which actually does I needed. However, I am used to using the right mouse button to find out the number of words in a text file. (You are right. I was a Windows user.) Then I discovered Automator [...]]]></description>
			<content:encoded><![CDATA[<p>I have been searching high and low for a <a href="http://support.apple.com/kb/HT2523">TextEdit</a> <em>word count</em> script and I found <a href="http://paulgorman.org/software/NanoCount/">NanoCount</a> which actually does I needed. However, I am used to using the right mouse button to find out the number of words in a text file. (You are right. I was a Windows user.)</p>
<p>Then I discovered <a href="http://support.apple.com/kb/ht2488">Automator</a> which comes with Mac OS X.</p>
<p><img src="http://myblogsg.com/wp-content/uploads/2010/06/automator_mac.jpg" alt="Mac OS X Automator" title="Mac OS X Automator" width="336" height="336" class="aligncenter size-full wp-image-683" /><span id="more-682"></span></p>
<h3>TextEdit Word Count: My First Automator Script</h3>
<p>I have little programming background and I find the Automator extremely easy to learn. However, I am totally alien to AppleScript and so I decided to google around for similar scripts to use in Automator. Here&#8217;s the 2 web pages where I used part of the codes in my TextEdit WordCount script.</p>
<ul>
<li><a href="http://stackoverflow.com/questions/1387689/applescript-word-count-service">AppleScript Word Count Service</a></li>
<li><a href="http://www.macosxhints.com/article.php?story=20100504062201437">Simple word and character count for TextEdit Apps</a></li>
</ul>
<h3>Automator Example: TextEdit WordCount Service</h3>
<p>First, open Automator in the Applications folder. Select Services.</p>
<p><img src="http://myblogsg.com/wp-content/uploads/2010/06/automator_01.png" alt="Step 1: Open Automator Application folder" title="Step 1: Open Automator Application folder" width="450" height="267" class="aligncenter size-full wp-image-684" /></p>
<p>Click at the option box &#8220;any application&#8221; to display the pull-down menu. Select Finder</p>
<p><img src="http://myblogsg.com/wp-content/uploads/2010/06/automator_02.png" alt="Step 2: Select Services" title="Step 2: Select Services" width="450" height="267" class="aligncenter size-full wp-image-685" /></p>
<p>Select Others.</p>
<p><img src="http://myblogsg.com/wp-content/uploads/2010/06/automator_03.png" alt="Step 3: Select Finder" title="Step 3: Select Finder" width="450" height="267" class="aligncenter size-full wp-image-686" /></p>
<p>In the Application folder, choose TextEdit.</p>
<p><img src="http://myblogsg.com/wp-content/uploads/2010/06/automator_04.png" alt="Step 4: Choose TextEdit" title="Step 4: Choose TextEdit" width="450" height="335" class="aligncenter size-full wp-image-687" /></p>
<p>On the right side of the Automator window, search for the action &#8220;Run AppleScript&#8221; by entering &#8220;run applescript&#8221; in the search box. </p>
<p><img src="http://myblogsg.com/wp-content/uploads/2010/06/automator_05.png" alt="Step 5: Selection Action &quot;Run Application&quot;" title="Step 5: Selection Action &quot;Run Application&quot;" width="380" height="256" class="aligncenter size-full wp-image-688" /></p>
<p>Double click at &#8220;Run AppleScript&#8221; or drag and drop this action into the workflow area.</p>
<p><img src="http://myblogsg.com/wp-content/uploads/2010/06/automator_06.png" alt="Step 6: Drag Run Application action into the workflow area" title="Step 6: Drag Run Application action into the workflow area" width="450" height="267" class="aligncenter size-full wp-image-689" /></p>
<p>Copy and paste the following codes into the AppleScript widows:<br />
<code><br />
set word_count to count words of (input as string)<br />
display alert "Words: " &#038; word_count<br />
</code></p>
<p>Then, compile the codes by clicking at the hammer icon. <img src="http://myblogsg.com/wp-content/uploads/2010/06/hammer_icon.png" alt="Hammer icon" title="Hammer icon" width="20" height="18" class="alignnone size-full wp-image-691" /></p>
<p><img src="http://myblogsg.com/wp-content/uploads/2010/06/automator_07.png" alt="Step 7: Copy and paste AppleScript code" title="Step 7: Copy and paste AppleScript code" width="450" height="339" class="aligncenter size-full wp-image-690" /></p>
<p>Save the Automator Service.</p>
<p><img src="http://myblogsg.com/wp-content/uploads/2010/06/automator_08.png" alt="Step 8: Save the Automator Service" title="Step 8: Save the Automator Service" width="392" height="90" class="aligncenter size-full wp-image-692" /></p>
<p>Next, test out TextEdit Word Count service.</p>
<p>Open a text file using TextEdit, highlight the text which you want to word count. Click the right button on the mouse.</p>
<p><img src="http://myblogsg.com/wp-content/uploads/2010/06/automator_09.png" alt="TextEdit Word Count" title="TextEdit Word Count" width="450" height="360" class="aligncenter size-full wp-image-693" /></p>]]></content:encoded>
			<wfw:commentRss>http://myblogsg.com/textedit-word-count/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>COMEX 2009: Macbook Pro Snow Leopard</title>
		<link>http://myblogsg.com/comex-2009-macbook-pro-snow-leopard</link>
		<comments>http://myblogsg.com/comex-2009-macbook-pro-snow-leopard#comments</comments>
		<pubDate>Tue, 28 Jul 2009 06:03:39 +0000</pubDate>
		<dc:creator>Wassup</dc:creator>
				<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[IT Shows]]></category>
		<category><![CDATA[Apple MacBook]]></category>
		<category><![CDATA[Comex]]></category>
		<category><![CDATA[MacBook Pro]]></category>
		<category><![CDATA[Snow Leopard]]></category>

		<guid isPermaLink="false">http://wassup.myblog.sg/?p=567</guid>
		<description><![CDATA[I just can&#8217;t wait for September 2009 to come. COMEX 2009 is on 10-13 September 2009 and hopefully Snow Leopard will be released by then. I have been delaying buying the MacBook because of the announcement of Snow Leopard last month. The 13&#8243; MacBook Pro starting at S$1,988 is within the budget for my next [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://myblogsg.com/wp-content/uploads/2009/07/macbook_pro.jpg" alt="MacBook Pro" width="65" height="112" class="alignright size-full wp-image-568" />I just can&#8217;t wait for September 2009 to come. <strong>COMEX 2009</strong> is on 10-13 September 2009 and hopefully Snow Leopard will be released by then. I have been delaying buying the MacBook because of the announcement of Snow Leopard last month. The 13&#8243; <strong>MacBook Pro</strong> starting at S$1,988 is within the budget for my next laptop. <span id="more-567"></span></p>
<p><div style="text-align:center">
<script type="text/javascript"><!--
google_ad_client = "pub-3169393782861942";
/* wassup.myblog_336x280single */
google_ad_slot = "1091554011";
google_ad_width = 336;
google_ad_height = 280;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div></p>
<p>I have been a Windows user all my life but since I have to change my OS when I buy a new laptop and <a href="http://myblogsg.com/my-vista-died-so-i-installed-ubuntu">Vista sux</a>, I might as well get a Mac with the latest <strong>OS X Snow Leopard</strong>.</p>
<p><img src="http://myblogsg.com/wp-content/uploads/2009/07/snow_leopard.jpg" alt="OS X Snow Leopard" width="450" height="240" class="aligncenter size-full wp-image-569" /></p>
<p>Hopefully, there will be some good deals at the COMEX 2009 in Singapore. It is unlikely that Apple&#8217;s going to lower the price, however, give me free upgrade to more RAM or a bigger HDD for my new <em>MacBook Pro</em>.</p>
<p><img src="http://myblogsg.com/wp-content/uploads/2009/07/osx_snow_leopard.jpg" alt="OS X Snow Leopard" title="OS X Snow Leopard" width="185" height="185" class="alignleft size-full wp-image-583" />[<strong>Updated 26 August 2009</strong>]</p>
<p>Mac OS X 10.6 Snow Leopard will be available from Friday 28 August 2009.</p>
<p>Upgrade price from OS X 10.5 Leopard is S$48.</p>]]></content:encoded>
			<wfw:commentRss>http://myblogsg.com/comex-2009-macbook-pro-snow-leopard/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
