<?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; Toolkit</title>
	<atom:link href="http://www.gaslowitz.net/filemaker/blog/topic/toolkit/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>Shameless Self-Promotion</title>
		<link>http://gaslowitz.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fwww.gaslowitz.net%2Ffilemaker%2Fblog%2F2008%2F12%2Fshameless-self-promotion%2F&amp;seed_title=Shameless+Self-Promotion</link>
		<comments>http://gaslowitz.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fwww.gaslowitz.net%2Ffilemaker%2Fblog%2F2008%2F12%2Fshameless-self-promotion%2F&amp;seed_title=Shameless+Self-Promotion#comments</comments>
		<pubDate>Thu, 18 Dec 2008 15:57:13 +0000</pubDate>
		<dc:creator>Michael Gaslowitz</dc:creator>
				<category><![CDATA[FileMaker]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Plugin]]></category>
		<category><![CDATA[Toolkit]]></category>
		<category><![CDATA[360Works]]></category>

		<guid isPermaLink="false">http://www.gaslowitz.net/filemaker/blog/?p=190</guid>
		<description><![CDATA[360Works is now selling a Portfolio License that covers all of their products for the low, low cost of $1,995. The Portfolio License entitles everyone to Enterprise versions of all of 360Works&#8217; products, (SuperContainer fans, this means you), and allows for unlimited use within a single organization regardless of the number of users or locations. [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.360works.com">360Works</a> is now selling a <a href="http://www.360works.com/portfolio/">Portfolio License</a> that covers all of their products for the low, low cost of $1,995. </p>
<p>The Portfolio License entitles everyone to Enterprise versions of all of 360Works&#8217; products, (<a href="http://www.360works.com/supercontainer/">SuperContainer</a> fans, this means you), and allows for unlimited use within a single organization regardless of the number of users or locations. Deployment on <a href="http://www.amazon.com/Filemaker-Inc-TL972LL-A-Server/dp/B000SSRBPG%3FSubscriptionId%3D02E5W5871AJF7PMMMS82%26tag%3Dafilblo-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3DB000SSRBPG">FileMaker Server</a> and through Web Publishing is included.</p>
<p>Current owners of 360Works products can apply the cost of previous purchases towards the cost (not to exceed 80%) of the Portfolio License.</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%2F12%2Fshameless-self-promotion%2F&amp;seed_title=Shameless+Self-Promotion/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Video: Reorder Fields and Scripts</title>
		<link>http://gaslowitz.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fwww.gaslowitz.net%2Ffilemaker%2Fblog%2F2008%2F11%2Fvideo-reorder-fields-and-scripts%2F&amp;seed_title=Video%3A+Reorder+Fields+and+Scripts</link>
		<comments>http://gaslowitz.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fwww.gaslowitz.net%2Ffilemaker%2Fblog%2F2008%2F11%2Fvideo-reorder-fields-and-scripts%2F&amp;seed_title=Video%3A+Reorder+Fields+and+Scripts#comments</comments>
		<pubDate>Sun, 09 Nov 2008 16:45:33 +0000</pubDate>
		<dc:creator>Michael Gaslowitz</dc:creator>
				<category><![CDATA[FileMaker]]></category>
		<category><![CDATA[Podcast]]></category>
		<category><![CDATA[Toolkit]]></category>

		<guid isPermaLink="false">http://www.gaslowitz.net/filemaker/blog/?p=145</guid>
		<description><![CDATA[This post demonstrates how to reorder multiple fields and scripts using the following keyboard shortcuts: Command (on a Mac)/Control (on a PC), with the up and down arrows. iPod Download (2.0 MB) Download ReorderFieldsAndScripts.zip]]></description>
			<content:encoded><![CDATA[<p>This post demonstrates how to reorder multiple fields and scripts using the following keyboard shortcuts: Command (on a Mac)/Control (on a PC), with the up and down arrows.</p>
<p><a class="img" href="http://www.gaslowitz.net/filemaker/blog/files/2008/11/ReorderFieldsAndScripts.mov"><br />
<img title="Click to Play" src="http://www.gaslowitz.net/filemaker/blog/files/2008/11/ReorderFieldsAndScripts_poster.jpg" alt="reorder fields and scripts" /></a></p>
<p><img src="http://www.gaslowitz.net/filemaker/images/ipod.png" alt="ipod version" width="16" height="16" /> <a href="http://www.gaslowitz.net/filemaker/blog/files/2008/11/ReorderFieldsAndScripts.m4v">iPod Download</a> (2.0 MB)</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/11/ReorderFieldsAndScripts.zip">Download ReorderFieldsAndScripts.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%2F11%2Fvideo-reorder-fields-and-scripts%2F&amp;seed_title=Video%3A+Reorder+Fields+and+Scripts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://www.gaslowitz.net/filemaker/blog/files/2008/11/ReorderFieldsAndScripts.m4v" length="2049598" type="audio/x-m4a" />
<enclosure url="http://www.gaslowitz.net/filemaker/blog/files/2008/11/ReorderFieldsAndScripts.mov" length="2569413" type="video/quicktime" />
		</item>
		<item>
		<title>Video: Import Data from the Fake Name Generator</title>
		<link>http://gaslowitz.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fwww.gaslowitz.net%2Ffilemaker%2Fblog%2F2008%2F08%2Fvideo-import-data-from-the-fake-name-generator%2F&amp;seed_title=Video%3A+Import+Data+from+the+Fake+Name+Generator</link>
		<comments>http://gaslowitz.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fwww.gaslowitz.net%2Ffilemaker%2Fblog%2F2008%2F08%2Fvideo-import-data-from-the-fake-name-generator%2F&amp;seed_title=Video%3A+Import+Data+from+the+Fake+Name+Generator#comments</comments>
		<pubDate>Sat, 09 Aug 2008 04:12:32 +0000</pubDate>
		<dc:creator>Michael Gaslowitz</dc:creator>
				<category><![CDATA[FileMaker]]></category>
		<category><![CDATA[Podcast]]></category>
		<category><![CDATA[Toolkit]]></category>
		<category><![CDATA[fake name generator]]></category>
		<category><![CDATA[sample data]]></category>

		<guid isPermaLink="false">http://www.gaslowitz.net/filemaker/blog/?p=31</guid>
		<description><![CDATA[This post demonstrates how to use the Fake Name Generator to generate fake data for your real FileMaker databases. Beginners will also learn how to import Microsoft Excel spreadsheets into FileMaker. iPod Download (8.2 MB) Fake Name Generator website Download FakeNameGenerator.zip]]></description>
			<content:encoded><![CDATA[<p>This post demonstrates how to use the <a href="http://www.fakenamegenerator.com/order.php">Fake Name Generator</a> to generate fake data for your real <a href="http://www.filemaker.com">FileMaker</a> databases. Beginners will also learn how to import <a href="http://www.amazon.com/gp/product/B000WR2F2M?ie=UTF8&#038;tag=afilblo-20&#038;linkCode=as2&#038;camp=1789&#038;creative=9325&#038;creativeASIN=B000WR2F2M">Microsoft Excel</a> spreadsheets into FileMaker.</p>
<p><a class="img" href="http://www.gaslowitz.net/filemaker/blog/files/2008/08/FakeNameGenerator.mov"><br />
<img alt="fake name generator video" title="Click to Play" src="http://www.gaslowitz.net/filemaker/blog/files/2008/08/FakeNameGenerator_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/08/FakeNameGenerator.m4v">iPod Download</a> (8.2 MB)  </p>
<p><img title="Fake Name Generator website" src="http://www.gaslowitz.net/filemaker/images/world.png" alt="" width="16" height="16" /> <a href="http://www.fakenamegenerator.com/order.php">Fake Name Generator 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/08/FakeNameGenerator.zip">Download FakeNameGenerator.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%2F08%2Fvideo-import-data-from-the-fake-name-generator%2F&amp;seed_title=Video%3A+Import+Data+from+the+Fake+Name+Generator/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://www.gaslowitz.net/filemaker/blog/files/2008/08/FakeNameGenerator.m4v" length="" type="" />
<enclosure url="http://www.gaslowitz.net/filemaker/blog/files/2008/08/FakeNameGenerator.mov" length="12629882" type="video/quicktime" />
		</item>
	</channel>
</rss>
