<?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>A FileMaker Blog&#187; AppleScript</title>
	<atom:link href="http://www.gaslowitz.net/filemaker/blog/topic/applescript/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.gaslowitz.net/filemaker/blog</link>
	<description>I have your database right here</description>
	<lastBuildDate>Mon, 08 Feb 2010 20:28:16 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>AppleScript your FileMaker Pro Advanced Menus</title>
		<link>http://gaslowitz.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fwww.gaslowitz.net%2Ffilemaker%2Fblog%2F2009%2F01%2Fapplescript-your-filemaker-pro-advanced-menus%2F&amp;seed_title=AppleScript+your+FileMaker+Pro+Advanced+Menus</link>
		<comments>http://gaslowitz.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fwww.gaslowitz.net%2Ffilemaker%2Fblog%2F2009%2F01%2Fapplescript-your-filemaker-pro-advanced-menus%2F&amp;seed_title=AppleScript+your+FileMaker+Pro+Advanced+Menus#comments</comments>
		<pubDate>Sun, 01 Feb 2009 00:17:47 +0000</pubDate>
		<dc:creator>Michael Gaslowitz</dc:creator>
				<category><![CDATA[AppleScript]]></category>
		<category><![CDATA[FileMaker]]></category>
		<category><![CDATA[Toolkit]]></category>
		<category><![CDATA[data viewer]]></category>
		<category><![CDATA[script debugger]]></category>

		<guid isPermaLink="false">http://www.gaslowitz.net/filemaker/blog/?p=198</guid>
		<description><![CDATA[The Data Viewer and the Script Debugger are staples in every FileMaker developer&#8217;s toolkit, yet there is no built-in keyboard shortcut or script step for either one of them. With four lines of AppleScript, these menus are now within reach: tell application "FileMaker Pro Advanced" activate do menu menu item "Data Viewer" of menu "Tools" [...]]]></description>
			<content:encoded><![CDATA[<p>The Data Viewer and the Script Debugger are staples in every <a href="http://www.amazon.com/gp/product/B001ONWZ0U?ie=UTF8&amp;tag=afilblo-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=B001ONWZ0U">FileMaker</a> developer&#8217;s <a href="/filemaker/blog/category/toolkit/">toolkit</a>, yet there is no built-in keyboard shortcut or script step for either one of them. With four lines of <a href="http://www.apple.com/applescript/">AppleScript</a>, these menus are now within reach:</p>
<pre><strong><span style="color: #99cc00;">tell</span></strong><span style="color: #99cc00;"> </span><span style="color: #000080;"><span style="color: #99cc00;">applicatio</span><span style="color: #99cc00;">n</span></span> <span style="color: #c0c0c0;">"FileMaker Pro Advanced"</span>
<span style="color: #3366ff;">     <span style="color: #99cc00;">activate</span></span><span style="color: #99cc00;">
</span><span style="color: #99cc00;">     do menu menu item</span> <span style="color: #c0c0c0;">"Data Viewer</span><span style="color: #c0c0c0;">"</span> <strong><span style="color: #99cc00;">of</span></strong><span style="color: #4f7db0;"><span style="color: #99cc00;"> men</span><span style="color: #99cc00;">u</span></span> <span style="color: #c0c0c0;">"Tools"</span>
<strong><span style="color: #99cc00;">end</span></strong><span style="color: #99cc00;"> </span><strong><span style="color: #99cc00;">tell</span></strong></pre>
<pre><strong><span style="color: #99cc00;">tell</span></strong><span style="color: #99cc00;"> </span><span style="color: #99cc00;">application</span> <span style="color: #c0c0c0;">"FileMaker Pro Advanced"</span>
<span style="color: #3366ff;">     <span style="color: #99cc00;">activate</span></span><span style="color: #4f7db0;">
</span><span style="color: #4f7db0;">     <span style="color: #99cc00;">do menu menu item</span></span> <span style="color: #c0c0c0;">"Script Debugger</span><span style="color: #c0c0c0;">"</span> <strong><span style="color: #99cc00;">of</span></strong><span style="color: #99cc00;"> menu</span> <span style="color: #c0c0c0;">"Tools"</span>
<strong><span style="color: #99cc00;">end</span></strong><span style="color: #99cc00;"> </span><strong><span style="color: #4f7db0;"><span style="color: #99cc00;">tel</span><span style="color: #99cc00;">l</span></span></strong></pre>
<p>To install, we could copy/paste these scripts into a Custom Menu that uses the Perform AppleScript script step (and of course a keyboard shortcut), but that would require us to do that for every database file we create. A better option would be to use a system-wide keyboard shortcut application like <a href="http://blacktree.com/?quicksilver">Quicksilver</a>, <a href="http://www.red-sweater.com/fastscripts/index.html">FastScripts</a>, or the built-in Keyboard System Preference.</p>
<p>If you run into problems, make sure your computer is <a href="http://www.gaslowitz.net/filemaker/blog/2008/05/configure-applescript-to-work-with-filemaker/">configured properly</a>.</p>
<p><img title="download file" src="http://www.gaslowitz.net/filemaker/images/file.png" alt="" width="16" height="16" /> <a href="http://www.gaslowitz.net/filemaker/blog/files/2009/01/AppleScriptFileMakerMenus.zip">Download the AppleScripts</a></p>
]]></content:encoded>
			<wfw:commentRss>http://gaslowitz.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fwww.gaslowitz.net%2Ffilemaker%2Fblog%2F2009%2F01%2Fapplescript-your-filemaker-pro-advanced-menus%2F&amp;seed_title=AppleScript+your+FileMaker+Pro+Advanced+Menus/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Video: Quicksilver for Large Type Functionality</title>
		<link>http://gaslowitz.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fwww.gaslowitz.net%2Ffilemaker%2Fblog%2F2008%2F07%2Fvideo-quicksilver-for-large-type-functionality%2F&amp;seed_title=Video%3A+Quicksilver+for+Large+Type+Functionality</link>
		<comments>http://gaslowitz.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fwww.gaslowitz.net%2Ffilemaker%2Fblog%2F2008%2F07%2Fvideo-quicksilver-for-large-type-functionality%2F&amp;seed_title=Video%3A+Quicksilver+for+Large+Type+Functionality#comments</comments>
		<pubDate>Wed, 30 Jul 2008 20:05:29 +0000</pubDate>
		<dc:creator>Michael Gaslowitz</dc:creator>
				<category><![CDATA[AppleScript]]></category>
		<category><![CDATA[Custom Function]]></category>
		<category><![CDATA[FileMaker]]></category>
		<category><![CDATA[Podcast]]></category>
		<category><![CDATA[Quicksilver]]></category>

		<guid isPermaLink="false">http://www.gaslowitz.net/filemaker/blog/?p=15</guid>
		<description><![CDATA[This post demonstrates how to integrate Large Type functionality into your FileMaker Pro database using Quicksilver. For those who have never poked around in Apple&#8217;s Address Book, clicking on a phone number type (work, home, etc.) pulls up a list of options, one of which is Large Type. Think big numbers across the screen for [...]]]></description>
			<content:encoded><![CDATA[<p>This post demonstrates how to integrate Large Type functionality into your FileMaker Pro database using <a href="http://www.blacktree.com">Quicksilver</a>. For those who have never poked around in Apple&#8217;s Address Book, clicking on a phone number type (work, home, etc.) pulls up a list of options, one of which is Large Type. Think big numbers across the screen for easy viewing and dialing.</p>
<p>Quicksilver&#8217;s Large Type functionality is accessed via an <a href="http://www.apple.com/applescript/">AppleScript</a> that has been embedded in a custom function. <a href="http://www.amazon.com/gp/product/B000SST6RW?ie=UTF8&#038;tag=afilblo-20&#038;linkCode=as2&#038;camp=1789&#038;creative=9325&#038;creativeASIN=B000SST6RW">Filemaker Pro Advanced</a> is required to view the custom function.</p>
<p><a class="img" href="http://www.gaslowitz.net/filemaker/blog/files/2008/07/LargeType.mov"><br />
<img alt="large type video" title="Click to Play" src="http://www.gaslowitz.net/filemaker/blog/files/2008/07/LargeType_poster.jpg" /></a></p>
<p><img alt="ipod version" src="http://www.gaslowitz.net/filemaker/images/ipod.png" alt="" width="16" height="16" /> <a href="http://www.gaslowitz.net/filemaker/blog/files/2008/07/LargeType.m4v">iPod Download</a> (11.5 MB)  </p>
<p><img title="Quicksilver website" src="http://www.gaslowitz.net/filemaker/images/world.png" alt="" width="16" height="16" /> <a href="http://www.blacktree.com">Quicksilver website</a></p>
<p><img title="Quicksilver tutorials" src="http://www.gaslowitz.net/filemaker/images/world.png" alt="" width="16" height="16" /> <a href="http://docs.blacktree.com/quicksilver/tutorials?DokuWiki=c18b5e6fe13586d77a08f3eb2c3f2042">Quicksilver tutorials</a></p>
<p><img title="download file" src="http://www.gaslowitz.net/filemaker/images/file.png" alt="" width="16" height="16" /> <a href="http://www.gaslowitz.net/filemaker/blog/files/2008/07/LargeType.zip">Download LargeType.zip</a></p>
]]></content:encoded>
			<wfw:commentRss>http://gaslowitz.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fwww.gaslowitz.net%2Ffilemaker%2Fblog%2F2008%2F07%2Fvideo-quicksilver-for-large-type-functionality%2F&amp;seed_title=Video%3A+Quicksilver+for+Large+Type+Functionality/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://www.gaslowitz.net/filemaker/blog/files/2008/07/LargeType.m4v" length="" type="" />
<enclosure url="http://www.gaslowitz.net/filemaker/blog/files/2008/07/LargeType.mov" length="16566411" type="video/quicktime" />
		</item>
		<item>
		<title>Video: Growl Integration</title>
		<link>http://gaslowitz.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fwww.gaslowitz.net%2Ffilemaker%2Fblog%2F2008%2F07%2Fvideo-growl-integration%2F&amp;seed_title=Video%3A+Growl+Integration</link>
		<comments>http://gaslowitz.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fwww.gaslowitz.net%2Ffilemaker%2Fblog%2F2008%2F07%2Fvideo-growl-integration%2F&amp;seed_title=Video%3A+Growl+Integration#comments</comments>
		<pubDate>Sat, 12 Jul 2008 00:56:22 +0000</pubDate>
		<dc:creator>Michael Gaslowitz</dc:creator>
				<category><![CDATA[AppleScript]]></category>
		<category><![CDATA[Custom Function]]></category>
		<category><![CDATA[FileMaker]]></category>
		<category><![CDATA[Podcast]]></category>
		<category><![CDATA[Scripting]]></category>
		<category><![CDATA[Growl]]></category>
		<category><![CDATA[Mac OS X]]></category>

		<guid isPermaLink="false">http://www.gaslowitz.net/filemaker/blog/?p=12</guid>
		<description><![CDATA[This post demonstrates how to integrate the Growl notification system for Mac OS X with your FileMaker Pro Database. Growl notifications are called via an AppleScript that has been formatted into a custom function. FileMaker Pro Advanced is required to view the custom function. These notifications can be used whenever you want to alert a [...]]]></description>
			<content:encoded><![CDATA[<p>This post demonstrates how to integrate the <a href="http://growl.info">Growl</a> notification system for Mac OS X with your FileMaker Pro Database. Growl notifications are called via an AppleScript that has been formatted into a custom function. <a href="https://store.filemaker.com/product/viewfamily/family/FDE?buy=pro9advpp">FileMaker Pro Advanced</a> is required to view the custom function. These notifications can be used whenever you want to alert a user without requiring his or her interaction.</p>
<p><a class="img" href="http://www.gaslowitz.net/filemaker/blog/files/2008/07/Growl_large.mov"><br />
<img alt="growl video" title="Click to Play" src="http://www.gaslowitz.net/filemaker/blog/files/2008/07/Growl_poster.jpg" /></a></p>
<p><img alt="ipod version" src="http://www.gaslowitz.net/filemaker/images/ipod.png" alt="" width="16" height="16" /> <a href="http://www.gaslowitz.net/filemaker/blog/files/2008/07/Growl_small.m4v">iPod Download</a> (18.5 MB)  </p>
<p><img title="Growl website" src="http://www.gaslowitz.net/filemaker/images/world.png" alt="" width="16" height="16" /> <a href="http://growl.info">Growl website</a></p>
<p><img title="download file" src="http://www.gaslowitz.net/filemaker/images/file.png" alt="" width="16" height="16" /> <a href="http://www.gaslowitz.net/filemaker/blog/files/2008/07/Growl.zip">Download Growl.zip</a></p>
]]></content:encoded>
			<wfw:commentRss>http://gaslowitz.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fwww.gaslowitz.net%2Ffilemaker%2Fblog%2F2008%2F07%2Fvideo-growl-integration%2F&amp;seed_title=Video%3A+Growl+Integration/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
<enclosure url="http://www.gaslowitz.net/filemaker/blog/files/2008/07/Growl_large.mov" length="20332569" type="video/quicktime" />
<enclosure url="http://www.gaslowitz.net/filemaker/blog/files/2008/07/Growl_small.m4v" length="19441217" type="audio/x-m4a" />
		</item>
		<item>
		<title>Configure AppleScript to Work with FileMaker</title>
		<link>http://gaslowitz.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fwww.gaslowitz.net%2Ffilemaker%2Fblog%2F2008%2F05%2Fconfigure-applescript-to-work-with-filemaker%2F&amp;seed_title=Configure+AppleScript+to+Work+with+FileMaker</link>
		<comments>http://gaslowitz.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fwww.gaslowitz.net%2Ffilemaker%2Fblog%2F2008%2F05%2Fconfigure-applescript-to-work-with-filemaker%2F&amp;seed_title=Configure+AppleScript+to+Work+with+FileMaker#comments</comments>
		<pubDate>Tue, 20 May 2008 14:45:50 +0000</pubDate>
		<dc:creator>Michael Gaslowitz</dc:creator>
				<category><![CDATA[AppleScript]]></category>
		<category><![CDATA[FileMaker]]></category>

		<guid isPermaLink="false">http://www.filemaking.org/wordpress/?p=1</guid>
		<description><![CDATA[Before we get into all of the cool things you can do with FileMaker, we need to make sure it is configured to work properly with Apple&#8217;s scripting utility, AppleScript. Head into the Finder, navigate to Applications &#62; AppleScript, and open up AppleScript Utility. Check the box Enable GUI Scripting. You are now ready for [...]]]></description>
			<content:encoded><![CDATA[<p>Before we get into all of the cool things you can do with FileMaker, we need to make sure it is configured to work properly with <a href="http://www.apple.com">Apple&#8217;s</a> scripting utility, <a href="http://www.apple.com/applescript/">AppleScript</a>.</p>
<p>Head into the Finder, navigate to <strong>Applications</strong> &gt; <strong>AppleScript</strong>, and open up <strong>AppleScript Utility</strong>.</p>
<p>Check the box <strong>Enable GUI Scripting</strong>.</p>
<p>You are now ready for filemaking with AppleScript.</p>
<p><a class="img" href='http://www.gaslowitz.net/filemaker/blog/files/2008/05/applescript_screenshot.png'><img src="http://www.gaslowitz.net/filemaker/blog/files/2008/05/applescript_screenshot.png" alt="applescript gui" title="applescript_screenshot" class="alignnone size-medium wp-image-8" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://gaslowitz.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fwww.gaslowitz.net%2Ffilemaker%2Fblog%2F2008%2F05%2Fconfigure-applescript-to-work-with-filemaker%2F&amp;seed_title=Configure+AppleScript+to+Work+with+FileMaker/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
