<?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>Leopard Tricks Tips and Tools &#187; Apps</title>
	<atom:link href="http://www.leopardtricks.com/category/apps/feed" rel="self" type="application/rss+xml" />
	<link>http://www.leopardtricks.com</link>
	<description>Tips and Tricks for Apple&#039;s Leopard operating system</description>
	<lastBuildDate>Thu, 06 Oct 2011 04:40:12 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Auto-answer Facetime calls</title>
		<link>http://www.leopardtricks.com/leopard/auto-answer-facetime-calls</link>
		<comments>http://www.leopardtricks.com/leopard/auto-answer-facetime-calls#comments</comments>
		<pubDate>Thu, 30 Dec 2010 11:02:32 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[Apps]]></category>
		<category><![CDATA[Leopard]]></category>
		<category><![CDATA[Snow Leopard]]></category>
		<category><![CDATA[facetime]]></category>
		<category><![CDATA[iphone 4]]></category>
		<category><![CDATA[OS X]]></category>
		<category><![CDATA[surveillance]]></category>

		<guid isPermaLink="false">http://www.leopardtricks.com/?p=551</guid>
		<description><![CDATA[So you might have an iPhone 4. You might have the facetime app for OS X. Wouldn&#8217;t it be neat if your mac could auto-answer calls?? Picture this, your mac is at home/office, you are out and about, you facetime your mac and have an instance surveillance system! open &#8220;terminal&#8221; and type: defaults write com.apple.FaceTime [...]]]></description>
			<content:encoded><![CDATA[<p>So you might have an iPhone 4. You might have the facetime app for OS X. Wouldn&#8217;t it be neat if your mac could auto-answer calls??</p>
<p>Picture this, your mac is at home/office, you are out and about, you facetime your mac and have an instance surveillance system!</p>
<p>open &#8220;terminal&#8221; and type:</p>
<p>defaults write com.apple.FaceTime AutoAcceptInvitesFrom -array-add +61410003111</p>
<p>(where the number at the end is your own cell number, inc area code)</p>
<p>You can also allow it to answer from other apple-ID&#8217;s instead of cell num&#8217;s, AND auto-answer everything..</p>
<p class="fbconnect_share"><fb:share-button class="url" href="http://www.leopardtricks.com/leopard/auto-answer-facetime-calls" /></p>]]></content:encoded>
			<wfw:commentRss>http://www.leopardtricks.com/leopard/auto-answer-facetime-calls/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Auto-enable Safari&#8217;s &#8220;Reopen Last Session&#8221;</title>
		<link>http://www.leopardtricks.com/apps/auto-enable-safaris-reopen-last-session</link>
		<comments>http://www.leopardtricks.com/apps/auto-enable-safaris-reopen-last-session#comments</comments>
		<pubDate>Mon, 24 Aug 2009 07:06:29 +0000</pubDate>
		<dc:creator>Justin Wah Kan</dc:creator>
				<category><![CDATA[Apps]]></category>
		<category><![CDATA[Applescript]]></category>
		<category><![CDATA[safari]]></category>
		<category><![CDATA[save session]]></category>

		<guid isPermaLink="false">http://www.leopardtricks.com/?p=426</guid>
		<description><![CDATA[Thanks Justin for this tip: One of the main reasons I used Firefox over Safari was the ability for FF to remember my tabs and windows once I quit the application. Since the release of Safari 4 however, I am finding it to be much smoother and faster than FF and have moved to it [...]]]></description>
			<content:encoded><![CDATA[<p></p>
<p><em>Thanks Justin for this tip:</em></p>
<p>One of the main reasons I used Firefox over Safari was the ability for FF to remember my tabs and windows once I quit the application.  Since the release of Safari 4 however, I  am finding it to be much smoother and faster than FF and have moved to it exclusively.</p>
<p>The problem still remains that users are not able to have the browser launch directly into the previous sessions so I decided to stop complaining and write an AppleScript to solve the problem.</p>
<p>The first thing you need to do is &#8220;<strong>Enable access for assistive devices</strong>&#8221; which is located in the <strong>System Preferences</strong> under <strong>Universal Access</strong>.</p>
<p>Then just run <a href="http://www.justinwahkan.com/scripts/Safari%20-%20Reopen%20Last%20Session.zip"><strong>this</strong></a> application anytime you want Safari to open your last sessions (prior to quitting the application).</p>
<p>If you would prefer to create the script yourself simply open <strong>Script Editor</strong> and enter the following text:</p>
<pre>
<blockquote>

<span><strong>tell</strong></span><span> </span>application<span> </span><span>"Safari"</span>

activate

<strong>end</strong><span> </span><strong>tell</strong>

<span><strong>tell</strong></span><span> </span><span>application</span><span> </span>"System Events"

<span><strong> tell</strong></span><span> </span><span>process</span><span> </span>"Safari"

<span><strong> tell</strong></span><span> </span>menu bar<span> </span><span>1</span>

<span><strong> tell</strong></span><span> </span><span>menu bar item</span><span> </span>"History"

<span><strong> tell</strong></span><span> </span><span>menu</span><span> </span>"History"

<span> click</span><span> </span><span>menu item</span><span> </span>"Reopen All Windows from Last Session"

<strong> end</strong><span> </span><strong>tell</strong>

<strong> end</strong><span> </span><strong>tell</strong>

<strong> end</strong><span> </span><strong>tell</strong>

<strong> end</strong><span> </span><strong>tell</strong>

<strong>end</strong><span> </span><strong>tell</strong></blockquote>
</pre>
<p>Then save the script as an <strong>application</strong> and your good to go.</p>
<p>If you want to change the icon so it looks like Safari simply &#8220;Get Info&#8221; for the application and drag the Safari (or any other) image to the icon preview  (top left) in the inspector window.</p>
<p>*Reposted from <a href="http://www.justinwahkan.com/2009/06/auto-enable-safaris-reopen-last-session/">here</a>.</p>
<p class="fbconnect_share"><fb:share-button class="url" href="http://www.leopardtricks.com/apps/auto-enable-safaris-reopen-last-session" /></p>]]></content:encoded>
			<wfw:commentRss>http://www.leopardtricks.com/apps/auto-enable-safaris-reopen-last-session/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Snow Leopard Enhancements and Refinements</title>
		<link>http://www.leopardtricks.com/leopard/snow-leopard-enhancements-and-refinements</link>
		<comments>http://www.leopardtricks.com/leopard/snow-leopard-enhancements-and-refinements#comments</comments>
		<pubDate>Thu, 11 Jun 2009 11:58:02 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[Apps]]></category>
		<category><![CDATA[Leopard]]></category>
		<category><![CDATA[Snow Leopard]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[enhancements]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[OS X]]></category>
		<category><![CDATA[refinements]]></category>
		<category><![CDATA[updates]]></category>

		<guid isPermaLink="false">http://www.leopardtricks.com/?p=420</guid>
		<description><![CDATA[So Apple have published a new page to their site(s) titled Enhancements and Refinements (for Snow Leopard) http://www.apple.com/macosx/refinements/enhancements-refinements.html Here&#8217;s just some of the features I&#8217;ve picked out: Put Back from the Trash Better Disk Eject behaviour, including telling you what App has a disk Open Setting default search location to Current folder  Printer Driver Updates [...]]]></description>
			<content:encoded><![CDATA[<p>So Apple have published a new page to their site(s) titled Enhancements and Refinements (for Snow Leopard)</p>
<p><a href="http://www.apple.com/macosx/refinements/enhancements-refinements.html">http://www.apple.com/macosx/refinements/enhancements-refinements.html</a></p>
<p>Here&#8217;s just some of the features I&#8217;ve picked out:</p>
<ul>
<li>Put Back from the Trash</li>
<li>Better Disk Eject behaviour, including telling you what App has a disk Open</li>
<li>Setting default search location to Current folder </li>
<li>Printer Driver Updates</li>
<li>Split Pane terminal is back!</li>
<li>Apparently some super file sharing energy saving magic:
<div>
<div class="smallfont">Quote:</div>
<table border="0" cellspacing="0" cellpadding="6" width="100%">
<tbody>
<tr>
<td class="alt2">With Snow Leopard and a compatible AirPort Extreme or Time Capsule base station, a computer that acts as a file or media server can go to sleep yet continue to share its files with other computers and devices, saving energy.</td>
</tr>
</tbody>
</table>
</div>
</li>
<li>Date in the Menu bar. It seems small, but seeing todays date at a glance is very useful</li>
<li>GPU acceleration for QuickTime X Video decoding</li>
<li>Exchange support</li>
<li>Data Detectors now identify fly details</li>
<li>Multi-Touch for older laptops</li>
<li>Grand Central Dispatch + OpenCL</li>
</ul>
<p>Head on over to the Apple site and have a good read, it&#8217;s worth a look.</p>
<p class="fbconnect_share"><fb:share-button class="url" href="http://www.leopardtricks.com/leopard/snow-leopard-enhancements-and-refinements" /></p>]]></content:encoded>
			<wfw:commentRss>http://www.leopardtricks.com/leopard/snow-leopard-enhancements-and-refinements/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Multi-Forward in Mail.app</title>
		<link>http://www.leopardtricks.com/apps/multi-forward-in-mailapp</link>
		<comments>http://www.leopardtricks.com/apps/multi-forward-in-mailapp#comments</comments>
		<pubDate>Tue, 12 May 2009 06:16:00 +0000</pubDate>
		<dc:creator>Hans@Tricks</dc:creator>
				<category><![CDATA[Apps]]></category>
		<category><![CDATA[Forward]]></category>
		<category><![CDATA[mail]]></category>

		<guid isPermaLink="false">http://www.leopardtricks.com/?p=415</guid>
		<description><![CDATA[Mail can create a single message of several selected messages to Forward.]]></description>
			<content:encoded><![CDATA[<p>Today I had to forward several messages to a single email address. Therefore I selected these messages with CMD and hit the Forward button.</p>
<p>Mail.app created one new message from the selected messages. Ready to send!</p>
<p><em>James &#8211; thanks Hans!</em></p>
<p class="fbconnect_share"><fb:share-button class="url" href="http://www.leopardtricks.com/apps/multi-forward-in-mailapp" /></p>]]></content:encoded>
			<wfw:commentRss>http://www.leopardtricks.com/apps/multi-forward-in-mailapp/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Safari &#8211; Open windows in Tabs instead</title>
		<link>http://www.leopardtricks.com/apps/safari-open-windows-in-tabs-instead</link>
		<comments>http://www.leopardtricks.com/apps/safari-open-windows-in-tabs-instead#comments</comments>
		<pubDate>Mon, 13 Oct 2008 21:54:08 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[Apps]]></category>
		<category><![CDATA[safari]]></category>
		<category><![CDATA[tabs]]></category>

		<guid isPermaLink="false">http://www.leopardtricks.com/?p=374</guid>
		<description><![CDATA[Some sites have popup&#8217;s that open a new browser window when browsing their site. Annoying, and you can block it. But what about web apps or sites that have legit pop up windows? You can open these windows in tabs instead! To set this up, open Terminal and type in the following: defaults write com.apple.Safari [...]]]></description>
			<content:encoded><![CDATA[<p>Some sites have popup&#8217;s that open a new browser window when browsing their site. Annoying, and you can block it. But what about web apps or sites that have legit pop up windows? You can open these windows in tabs instead!</p>
<p>To set this up, open Terminal and type in the following:</p>
<p>defaults write com.apple.Safari TargetedClicksCreateTabs -bool true</p>
<p>Hit enter and quit Safari. When restarting Safari, your windows will open in tabs instead!</p>
<p>To revert back, in Termina, type:<br />
defaults write com.apple.Safari TargetedClicksCreateTabs -bool false</p>
<p>Quit Safari and restart&#8230;</p>
<p class="fbconnect_share"><fb:share-button class="url" href="http://www.leopardtricks.com/apps/safari-open-windows-in-tabs-instead" /></p>]]></content:encoded>
			<wfw:commentRss>http://www.leopardtricks.com/apps/safari-open-windows-in-tabs-instead/feed</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Send a page instead of a link</title>
		<link>http://www.leopardtricks.com/apps/send-a-page-instead-of-a-link</link>
		<comments>http://www.leopardtricks.com/apps/send-a-page-instead-of-a-link#comments</comments>
		<pubDate>Mon, 29 Sep 2008 23:04:11 +0000</pubDate>
		<dc:creator>sunny</dc:creator>
				<category><![CDATA[Apps]]></category>
		<category><![CDATA[mail]]></category>
		<category><![CDATA[safari]]></category>

		<guid isPermaLink="false">http://www.leopardtricks.com/?p=369</guid>
		<description><![CDATA[Find a page you want to send (in Safari) and hit Command+I . This will open Mail with the ready to send. Dunno if it&#8217;s a windows friendly attachment but in Mail you can see the site even without opening your browser! Ps: it probably sends a .webarchive file.]]></description>
			<content:encoded><![CDATA[<p>Find a page you want to send (in Safari) and hit Command+I . This will open Mail with the ready to send. Dunno if it&#8217;s a windows friendly attachment but in Mail you can see the site even without opening your browser!</p>
<p>Ps: it probably sends a .webarchive file.</p>
<p class="fbconnect_share"><fb:share-button class="url" href="http://www.leopardtricks.com/apps/send-a-page-instead-of-a-link" /></p>]]></content:encoded>
			<wfw:commentRss>http://www.leopardtricks.com/apps/send-a-page-instead-of-a-link/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Quick google search trick</title>
		<link>http://www.leopardtricks.com/leopard/quick-google-search-trick</link>
		<comments>http://www.leopardtricks.com/leopard/quick-google-search-trick#comments</comments>
		<pubDate>Tue, 24 Jun 2008 01:36:27 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[Apps]]></category>
		<category><![CDATA[dock]]></category>
		<category><![CDATA[Leopard]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[safari]]></category>
		<category><![CDATA[search]]></category>
		<category><![CDATA[text]]></category>

		<guid isPermaLink="false">http://www.leopardtricks.com/?p=346</guid>
		<description><![CDATA[You can drag text onto the Safari dock icon to perform a quick google search]]></description>
			<content:encoded><![CDATA[<p>You can drag text onto the Safari dock icon to perform a quick google search<br />
<span id="more-346"></span><br />
<object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/5ZwGX-VBnYw&#038;hl=en"></param><embed src="http://www.youtube.com/v/5ZwGX-VBnYw&#038;hl=en" type="application/x-shockwave-flash" width="425" height="344"></embed></object></p>
<p class="fbconnect_share"><fb:share-button class="url" href="http://www.leopardtricks.com/leopard/quick-google-search-trick" /></p>]]></content:encoded>
			<wfw:commentRss>http://www.leopardtricks.com/leopard/quick-google-search-trick/feed</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Automatically change the status in iChat</title>
		<link>http://www.leopardtricks.com/leopard/automatically-change-the-status-in-ichat</link>
		<comments>http://www.leopardtricks.com/leopard/automatically-change-the-status-in-ichat#comments</comments>
		<pubDate>Sun, 22 Jun 2008 23:31:54 +0000</pubDate>
		<dc:creator>papilimichel</dc:creator>
				<category><![CDATA[Apps]]></category>
		<category><![CDATA[Leopard]]></category>
		<category><![CDATA[Applescript]]></category>
		<category><![CDATA[ichat]]></category>
		<category><![CDATA[Status]]></category>

		<guid isPermaLink="false">http://www.leopardtricks.com/?p=339</guid>
		<description><![CDATA[Automatically change the status in iChat Here is a way to automatically change your status when sending or receiving text, audio/video invitations. You&#8217;ll need to create five simple AppleScripts, and save them into your user&#8217;s Library » Scripts » iChat folder (create the folder if necessary). Open Script Editor (in Applications » AppleScript), then copy [...]]]></description>
			<content:encoded><![CDATA[<p></p>
<p><strong>Automatically change the status in iChat</strong></p>
<p>Here is a way to automatically change your status when sending or receiving text, audio/video invitations. You&#8217;ll need to create five simple AppleScripts, and save them into your user&#8217;s Library » Scripts » iChat folder (create the folder if necessary).</p>
<p>Open Script Editor (in Applications » AppleScript), then copy and paste these scripts, one at a time, into the Script Editor window. Click the Compile button, then select File » Save As and point to the previously-noted iChat folder. Name them as shown with each scripts code, on the second page of the hint&#8230;</p>
<p><span id="more-339"></span></p>
<p><strong>Script name: iChat invited text.scpt</strong></p>
<p><strong></strong></p>
<p><strong></strong></p>
<p><strong>using terms from</strong><span> </span><span>application</span><span> </span><span>&#8220;iChat&#8221;</span></p>
<p><span> </span></p>
<p><span><span> </span></span><span><strong>on</strong></span><span> </span>received text invitation<span> </span><span>theText</span><span> </span>from<span> </span><span>theBuddy</span><span> </span>for<span> </span><span>theChat</span></p>
<p><span><span> </span></span><span>accept</span><span> </span>theChat</p>
<p><span><span> </span></span><span><strong>set</strong></span><span> </span><span>savedstatus</span><span> </span><span><strong>to</strong></span><span> </span><span>status</span><span> </span><span>&#8211;</span> save actual status</p>
<p><span><span> </span></span><span><strong>set</strong></span><span> </span><span>savedstatusmsg</span><span> </span><span><strong>to</strong></span><span> </span><span>status message</span><span> </span><span>&#8211;</span> save actual status message</p>
<p><span><span> </span></span><span><strong>set</strong></span><span> </span>status<span> </span><span><strong>to</strong></span><span> </span>away</p>
<p><span><span> </span></span><span><strong>set</strong></span><span> </span>firstname<span> </span><span><strong>to</strong></span><span> </span><span>(</span><span><strong>get</strong></span><span> </span><span>first name</span><span> </span><span><strong>of</strong></span><span> </span>theBuddy<span>)</span></p>
<p><span><span> </span></span><span><strong>set</strong></span><span> </span>lastname<span> </span><span><strong>to</strong></span><span> </span><span>(</span><span><strong>get</strong></span><span> </span><span>last name</span><span> </span><span><strong>of</strong></span><span> </span>theBuddy<span>)</span></p>
<p><span><span> </span></span><span><strong>set</strong></span><span> </span><span>status message</span><span> </span><span><strong>to</strong></span><span> </span>&#8220;Currently text chatting&#8221;<span> </span>&amp;<span> </span>&#8221; with &#8220;<span> </span>&amp;<span> </span><span>firstname</span><span> </span>&amp;<span> </span>&#8221; &#8220;<span> </span>&amp;<span> </span><span>lastname</span></p>
<p><span><span> </span></span><span><strong>set</strong></span><span> </span>message_status<span> </span><span><strong>to</strong></span><span> </span><span>status message</span></p>
<p><span><span> </span></span><span>say</span><span> </span>message_status</p>
<p><span><span> </span></span><span><strong>if</strong></span><span> </span>(<span>savedstatusmsg</span><span> </span><span><strong>contains</strong></span><span> </span>&#8220;Chat&#8221;)<span> </span><span><strong>or</strong></span><span> </span>(<span>savedstatusmsg</span><span> </span><span><strong>contains</strong></span><span> </span>&#8220;Conversation&#8221;)<span> </span><span><strong>then</strong></span></p>
<p><span><span> </span></span><span>delay</span><span> </span><span>10</span><span> </span><span>&#8211;</span> display only for a few seconds</p>
<p><span><span> </span></span><span><strong>set</strong></span><span> </span><span>status</span><span> </span><span><strong>to</strong></span><span> </span><span>savedstatus</span><span> </span><span>&#8211;</span> restore the original status before the invitation</p>
<p><span><span> </span></span><span><strong>set</strong></span><span> </span><span>status message</span><span> </span><span><strong>to</strong></span><span> </span><span>savedstatusmsg</span><span> </span><span>&#8211;</span> restore the original message before the invitation</p>
<p><span><span> </span></span><strong>end</strong><span> </span><strong>if</strong></p>
<p><span><span> </span></span><span><strong>end</strong></span><span> </span>received text invitation</p>
<p><span> </span></p>
<p><strong>end</strong><span> </span><strong>using terms from</strong></p>
<p><strong>Script name: iChat invited video.scpt</strong></p>
<p><strong>using terms from</strong><span> </span><span>application</span><span> </span><span>&#8220;iChat&#8221;</span></p>
<p><span> </span></p>
<p><span><span> </span></span><span><strong>on</strong></span><span> </span>received video invitation<span> </span><span>theText</span><span> </span>from<span> </span><span>theBuddy</span><span> </span>for<span> </span><span>theChat</span></p>
<p><span><span> </span></span><span><strong>set</strong></span><span> </span>status<span> </span><span><strong>to</strong></span><span> </span>away</p>
<p><span><span> </span></span><span><strong>set</strong></span><span> </span>firstname<span> </span><span><strong>to</strong></span><span> </span><span>(</span><span><strong>get</strong></span><span> </span><span>first name</span><span> </span><span><strong>of</strong></span><span> </span>theBuddy<span>)</span></p>
<p><span><span> </span></span><span><strong>set</strong></span><span> </span>lastname<span> </span><span><strong>to</strong></span><span> </span><span>(</span><span><strong>get</strong></span><span> </span><span>last name</span><span> </span><span><strong>of</strong></span><span> </span>theBuddy<span>)</span></p>
<p><span><span> </span></span><span><strong>set</strong></span><span> </span><span>status message</span><span> </span><span><strong>to</strong></span><span> </span>&#8220;Video Chat&#8221;<span> </span>&amp;<span> </span>&#8221; with &#8220;<span> </span>&amp;<span> </span><span>firstname</span><span> </span>&amp;<span> </span>&#8221; &#8220;<span> </span>&amp;<span> </span><span>lastname</span></p>
<p><span><span> </span></span><span><strong>set</strong></span><span> </span><span>message_status</span><span> </span><span><strong>to</strong></span><span> </span>&#8220;Video Chat&#8221;<span> </span>&amp;<span> </span>&#8221; with &#8220;<span> </span>&amp;<span> </span><span>firstname</span><span> </span>&amp;<span> </span>&#8221; &#8220;<span> </span>&amp;<span> </span><span>lastname</span></p>
<p><span><span> </span></span><span>&#8211;</span> say message_status</p>
<p><span><span> </span></span><span><strong>end</strong></span><span> </span>received video invitation</p>
<p><span> </span></p>
<p><strong>end</strong><span> </span><strong>using terms from</strong></p>
<p><strong></strong></p>
<p><strong>Script name: iChat invited audio.scpt</strong></p>
<p><strong></strong></p>
<p><strong>using terms from</strong><span> </span><span>application</span><span> </span><span>&#8220;iChat&#8221;</span></p>
<p><span> </span></p>
<p><span><span> </span></span><span><strong>on</strong></span><span> </span>received audio invitation<span> </span><span>theText</span><span> </span>from<span> </span><span>theBuddy</span><span> </span>for<span> </span><span>theChat</span></p>
<p><span><span> </span></span><span><strong>set</strong></span><span> </span>status<span> </span><span><strong>to</strong></span><span> </span>away</p>
<p><span><span> </span></span><span><strong>set</strong></span><span> </span>firstname<span> </span><span><strong>to</strong></span><span> </span><span>(</span><span><strong>get</strong></span><span> </span><span>first name</span><span> </span><span><strong>of</strong></span><span> </span>theBuddy<span>)</span></p>
<p><span><span> </span></span><span><strong>set</strong></span><span> </span>lastname<span> </span><span><strong>to</strong></span><span> </span><span>(</span><span><strong>get</strong></span><span> </span><span>last name</span><span> </span><span><strong>of</strong></span><span> </span>theBuddy<span>)</span></p>
<p><span><span> </span></span><span><strong>set</strong></span><span> </span><span>status message</span><span> </span><span><strong>to</strong></span><span> </span>&#8220;Audio Chat&#8221;<span> </span>&amp;<span> </span>&#8221; with &#8220;<span> </span>&amp;<span> </span><span>firstname</span><span> </span>&amp;<span> </span>&#8221; &#8220;<span> </span>&amp;<span> </span><span>lastname</span></p>
<p><span><span> </span></span><span><strong>set</strong></span><span> </span><span>message_status</span><span> </span><span><strong>to</strong></span><span> </span>&#8220;Audio Chat&#8221;<span> </span>&amp;<span> </span>&#8221; with &#8220;<span> </span>&amp;<span> </span><span>firstname</span><span> </span>&amp;<span> </span>&#8221; &#8220;<span> </span>&amp;<span> </span><span>lastname</span></p>
<p><span><span> </span></span><span>&#8211;</span> say message_status</p>
<p><span> </span></p>
<p><span><span> </span></span><span><strong>end</strong></span><span> </span>received audio invitation</p>
<p><span> </span></p>
<p><strong>end</strong><span> </span><strong>using terms from</strong></p>
<p><strong></strong></p>
<p><strong>Script name: iChat started.scpt</strong></p>
<p><strong>using terms from</strong><span> </span><span>application</span><span> </span><span>&#8220;iChat&#8221;</span></p>
<p><span><span> </span></span><span><strong>on</strong></span><span> </span>av chat started</p>
<p><span><span> </span></span><span><strong>tell</strong></span><span> </span><span>application</span><span> </span>&#8220;iChat&#8221;</p>
<p><span><span> </span></span><span><strong>set</strong></span><span> </span><span>windowname</span><span> </span><span><strong>to</strong></span><span> </span>(<span><strong>get</strong></span><span> </span><span>name</span><span> </span><span><strong>of</strong></span><span> </span><span>window</span><span> </span>1)</p>
<p><span><span> </span></span><strong>if</strong><span> </span><span>(</span><span>windowname</span><span> </span><strong>does not</strong><span> </span><strong>contain</strong><span> </span><span>&#8220;Chat&#8221;)</span><span> </span><strong>and</strong><span> </span><span>(</span><span>windowname</span><span> </span><strong>does not</strong><span> </span><strong>contain</strong><span> </span><span>&#8220;Conversation&#8221;)</span><span> </span><strong>then</strong></p>
<p><span><span> </span></span><span><strong>set</strong></span><span> </span><span>windowname</span><span> </span><span><strong>to</strong></span><span> </span>(<span><strong>get</strong></span><span> </span><span>name</span><span> </span><span><strong>of</strong></span><span> </span><span>window</span><span> </span>2)</p>
<p><span><span> </span></span><strong>end</strong><span> </span><strong>if</strong></p>
<p><span><span> </span></span><strong>if</strong><span> </span><span>(</span><span>windowname</span><span> </span><strong>does not</strong><span> </span><strong>contain</strong><span> </span><span>&#8220;Chat&#8221;)</span><span> </span><strong>and</strong><span> </span><span>(</span><span>windowname</span><span> </span><strong>does not</strong><span> </span><strong>contain</strong><span> </span><span>&#8220;Conversation&#8221;)</span><span> </span><strong>then</strong></p>
<p><span><span> </span></span><span><strong>set</strong></span><span> </span><span>windowname</span><span> </span><span><strong>to</strong></span><span> </span>(<span><strong>get</strong></span><span> </span><span>name</span><span> </span><span><strong>of</strong></span><span> </span><span>window</span><span> </span>3)</p>
<p><span><span> </span></span><strong>end</strong><span> </span><strong>if</strong></p>
<p><span><span> </span></span><strong>end</strong><span> </span><strong>tell</strong></p>
<p><span> </span></p>
<p><span><span> </span></span><span><strong>set</strong></span><span> </span>status<span> </span><span><strong>to</strong></span><span> </span>away</p>
<p><span><span> </span></span><span><strong>set</strong></span><span> </span>status message<span> </span><span><strong>to</strong></span><span> </span><span>windowname</span></p>
<p><span><span> </span></span><span>&#8211;</span> say windowname</p>
<p><span><span> </span></span><span><strong>end</strong></span><span> </span>av chat started</p>
<p><strong>end</strong><span> </span><strong>using terms from</strong></p>
<p><strong>Script name: iChat ended.scpt</strong></p>
<p><strong></strong></p>
<p><strong>using terms from</strong><span> </span><span>application</span><span> </span><span>&#8220;iChat&#8221;</span></p>
<p><span> </span></p>
<p><span><span> </span></span><span><strong>on</strong></span><span> </span>av chat ended</p>
<p><span><span> </span></span><span><strong>set</strong></span><span> </span>status<span> </span><span><strong>to</strong></span><span> </span>available</p>
<p><span><span> </span></span><span><strong>set</strong></span><span> </span><span>status message</span><span> </span><span><strong>to</strong></span><span> </span>&#8220;Available . . .&#8221;</p>
<p><span><span> </span></span><span><strong>end</strong></span><span> </span>av chat ended</p>
<p><strong>end</strong><span> </span><strong>using terms from</strong></p>
<p><strong></strong></p>
<p><strong></strong></p>
<p>You now need to create five alerts in iChat. Open iChat&#8217;s preferences, select the Alerts icon, and then set up five new rules, attaching one script to each specified event:</p>
<p><span> </span>•<span> </span>Event: Text invitation » Run AppleScript » iChat invited text.scpt</p>
<ul>
<li>Event: Audio invitation » Run AppleScript » iChat invited audio.scpt</li>
<li>Event: Video invitation » Run AppleScript » iChat invited video.scpt</li>
<li>Event: A/V Chat Started » Run AppleScript » iChat started.scpt</li>
<li>Event: A/V Chat Ended » Run AppleScript » iChat ended.scpt</li>
</ul>
<p class="fbconnect_share"><fb:share-button class="url" href="http://www.leopardtricks.com/leopard/automatically-change-the-status-in-ichat" /></p>]]></content:encoded>
			<wfw:commentRss>http://www.leopardtricks.com/leopard/automatically-change-the-status-in-ichat/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Reply to a selected part of an email.</title>
		<link>http://www.leopardtricks.com/leopard/reply-to-a-selected-part-of-an-email</link>
		<comments>http://www.leopardtricks.com/leopard/reply-to-a-selected-part-of-an-email#comments</comments>
		<pubDate>Fri, 18 Apr 2008 03:05:06 +0000</pubDate>
		<dc:creator>rattfink138</dc:creator>
				<category><![CDATA[Apps]]></category>
		<category><![CDATA[Leopard]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[mail]]></category>

		<guid isPermaLink="false">http://www.leopardtricks.com/?p=328</guid>
		<description><![CDATA[Like most tricks, I stumbled upon this by accident. If you just want to reply or forward a selected portion of an email in Mail, just drag to highlight the portion of the email and click reply or forward. Comes in handy for those long threads.]]></description>
			<content:encoded><![CDATA[<p>Like most tricks, I stumbled upon this by accident.  If you just want to reply or forward a selected portion of an email in Mail, just drag to highlight the portion of the email and click reply or forward.  Comes in handy for those long threads.<br />
<span id="more-328"></span><br />
<object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/o0Nf6qgajYs&#038;hl=en&#038;color1=0x3a3a3a&#038;color2=0x999999"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/o0Nf6qgajYs&#038;hl=en&#038;color1=0x3a3a3a&#038;color2=0x999999" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object></p>
<p class="fbconnect_share"><fb:share-button class="url" href="http://www.leopardtricks.com/leopard/reply-to-a-selected-part-of-an-email" /></p>]]></content:encoded>
			<wfw:commentRss>http://www.leopardtricks.com/leopard/reply-to-a-selected-part-of-an-email/feed</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>iTunes 10.5 Visualiser tricks</title>
		<link>http://www.leopardtricks.com/leopard/itunes-105-visualiser-tricks</link>
		<comments>http://www.leopardtricks.com/leopard/itunes-105-visualiser-tricks#comments</comments>
		<pubDate>Wed, 16 Apr 2008 08:47:06 +0000</pubDate>
		<dc:creator>WhizzKid</dc:creator>
				<category><![CDATA[Apps]]></category>
		<category><![CDATA[Leopard]]></category>
		<category><![CDATA[itunes]]></category>
		<category><![CDATA[quartz]]></category>
		<category><![CDATA[visualisers]]></category>

		<guid isPermaLink="false">http://www.leopardtricks.com/?p=324</guid>
		<description><![CDATA[Th three new visualisers have a few tricks up their sleeves. LATHE: Press F to see the current frame rate STIX: Press F to see the current frame rate Press the Up Arrow to add a second stick, and the Down Arrow cycles through available speeds JELLY: Press F to see the current frame rate Press the [...]]]></description>
			<content:encoded><![CDATA[<p>Th three new visualisers have a few tricks up their sleeves.</p>
<ul>
<li><strong>LATHE</strong>: Press F to see the current frame rate</li>
<li><strong>STIX:</strong> Press F to see the current frame rate<br />
Press the Up Arrow to add a second stick, and the Down Arrow cycles through available speeds</li>
<li><strong>JELLY:</strong> Press F to see the current frame rate<br />
Press the Up or Down Arrow to cycle between seven different jelly styles, and press M to lock it, and again to unlock it.<br />
Press and hold 1 or 2, and the center of the current jelly will move farther away or much closer to your viewpoint. Press and hold any combination of 8, 9, and 0 (zero), and you’ll add an extra “glow” to certain areas of the jelly. Press and hold all three for some serious psychedelia.</li>
</ul>
<p class="fbconnect_share"><fb:share-button class="url" href="http://www.leopardtricks.com/leopard/itunes-105-visualiser-tricks" /></p>]]></content:encoded>
			<wfw:commentRss>http://www.leopardtricks.com/leopard/itunes-105-visualiser-tricks/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

