<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.3.3" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>
<channel>
	<title>Comments on: FileMaker 9 Tip#5: Using the Self Function</title>
	<link>http://sixfriedrice.com/wp/filemaker-9-tip5-using-the-self-function/</link>
	<description>smart business solutions</description>
	<pubDate>Thu, 04 Dec 2008 21:36:19 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.3</generator>
		<item>
		<title>By: Gordo</title>
		<link>http://sixfriedrice.com/wp/filemaker-9-tip5-using-the-self-function/#comment-1146</link>
		<dc:creator>Gordo</dc:creator>
		<pubDate>Tue, 27 May 2008 23:08:47 +0000</pubDate>
		<guid>http://sixfriedrice.com/wp/filemaker-9-tip5-using-the-self-function/#comment-1146</guid>
		<description>Great Script Parameter, BUT be very careful that all users are running FM 9 + or you will get errors. ? FM 8.5 doesn't support the SELF parameter. Another great function is Upper(Self) as a lookup to ensure the data is all upper format.</description>
		<content:encoded><![CDATA[<p>Great Script Parameter, BUT be very careful that all users are running FM 9 + or you will get errors. ? FM 8.5 doesn&#8217;t support the SELF parameter. Another great function is Upper(Self) as a lookup to ensure the data is all upper format.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael Funayama</title>
		<link>http://sixfriedrice.com/wp/filemaker-9-tip5-using-the-self-function/#comment-488</link>
		<dc:creator>Michael Funayama</dc:creator>
		<pubDate>Tue, 04 Sep 2007 05:58:18 +0000</pubDate>
		<guid>http://sixfriedrice.com/wp/filemaker-9-tip5-using-the-self-function/#comment-488</guid>
		<description>Tom Fitch's idea sounds good, but fm9 doesn't like Self as a script parameter. I've got a solution going where the menu buttons are text which changes colour conditionally if it matches the current layout name. With this I can have one set of menu buttons which I copy across to all my layouts, but I still have to enter a different script parameter for each button. They also have the same tooltip calculation.</description>
		<content:encoded><![CDATA[<p>Tom Fitch&#8217;s idea sounds good, but fm9 doesn&#8217;t like Self as a script parameter. I&#8217;ve got a solution going where the menu buttons are text which changes colour conditionally if it matches the current layout name. With this I can have one set of menu buttons which I copy across to all my layouts, but I still have to enter a different script parameter for each button. They also have the same tooltip calculation.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Geoff Coffey</title>
		<link>http://sixfriedrice.com/wp/filemaker-9-tip5-using-the-self-function/#comment-246</link>
		<dc:creator>Geoff Coffey</dc:creator>
		<pubDate>Wed, 25 Jul 2007 00:59:05 +0000</pubDate>
		<guid>http://sixfriedrice.com/wp/filemaker-9-tip5-using-the-self-function/#comment-246</guid>
		<description>@tom: That is a very cool technique. I am positive I'll be using it myself. I already use a single script and global variables to keep track of sort order so I can swap ascending/descending, so I can apply your idea to get visual feedback for my users with just some conditional formatting. Awesome :)</description>
		<content:encoded><![CDATA[<p>@tom: That is a very cool technique. I am positive I&#8217;ll be using it myself. I already use a single script and global variables to keep track of sort order so I can swap ascending/descending, so I can apply your idea to get visual feedback for my users with just some conditional formatting. Awesome <img src='http://sixfriedrice.com/wp/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tom Fitch</title>
		<link>http://sixfriedrice.com/wp/filemaker-9-tip5-using-the-self-function/#comment-243</link>
		<dc:creator>Tom Fitch</dc:creator>
		<pubDate>Tue, 24 Jul 2007 18:50:31 +0000</pubDate>
		<guid>http://sixfriedrice.com/wp/filemaker-9-tip5-using-the-self-function/#comment-243</guid>
		<description>You can use Self to highlight the column heading of a list layout to indicate sorting. 

1. pass a Script Parameter "self" to the sort script; 
... i.e., you're passing the text of the button...
2. in the script set $$sortorder to the param; 
3. conditionally format the button you clicked with self = $$sortorder

You can extend this to include an up or down triangle for ascending/descending sort, using a dingbat font that you hide/show by changing its text color to match the background or not. However, this method seems to require individually naming each object, which is kind of a bummer. I.e. you can nicely use conditional formatting for this part, but not the Self function.</description>
		<content:encoded><![CDATA[<p>You can use Self to highlight the column heading of a list layout to indicate sorting. </p>
<p>1. pass a Script Parameter &#8220;self&#8221; to the sort script;<br />
&#8230; i.e., you&#8217;re passing the text of the button&#8230;<br />
2. in the script set $$sortorder to the param;<br />
3. conditionally format the button you clicked with self = $$sortorder</p>
<p>You can extend this to include an up or down triangle for ascending/descending sort, using a dingbat font that you hide/show by changing its text color to match the background or not. However, this method seems to require individually naming each object, which is kind of a bummer. I.e. you can nicely use conditional formatting for this part, but not the Self function.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bart Bartholomay</title>
		<link>http://sixfriedrice.com/wp/filemaker-9-tip5-using-the-self-function/#comment-203</link>
		<dc:creator>Bart Bartholomay</dc:creator>
		<pubDate>Wed, 18 Jul 2007 19:59:12 +0000</pubDate>
		<guid>http://sixfriedrice.com/wp/filemaker-9-tip5-using-the-self-function/#comment-203</guid>
		<description>&lt;p&gt;Hey, David, do you have a small proof of concept file you could make available?&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Hey, David, do you have a small proof of concept file you could make available?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Geoff Coffey</title>
		<link>http://sixfriedrice.com/wp/filemaker-9-tip5-using-the-self-function/#comment-135</link>
		<dc:creator>Geoff Coffey</dc:creator>
		<pubDate>Fri, 13 Jul 2007 14:45:47 +0000</pubDate>
		<guid>http://sixfriedrice.com/wp/filemaker-9-tip5-using-the-self-function/#comment-135</guid>
		<description>&lt;p&gt;@david: Awesome.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>@david: Awesome.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David Head</title>
		<link>http://sixfriedrice.com/wp/filemaker-9-tip5-using-the-self-function/#comment-131</link>
		<dc:creator>David Head</dc:creator>
		<pubDate>Fri, 13 Jul 2007 09:11:52 +0000</pubDate>
		<guid>http://sixfriedrice.com/wp/filemaker-9-tip5-using-the-self-function/#comment-131</guid>
		<description>&lt;p&gt;Since the Self function will return the contents of a field that it refers to, you can use tooltips to display the entire contents of a field. &lt;/p&gt;

&lt;p&gt;Take the case of a list where there is limited space for a field. When a user hovers their mouse over the field, a tooltip appears that displays the entire field contents.&lt;/p&gt;

&lt;p&gt;This was done in the past by defining the tooltip with the field name. Not any more - set the tooltip to Self. Then duplicate the field (with its tooltip), specify the field for the duplicate and the tooltip will display the contents of the new field.&lt;/p&gt;

&lt;p&gt;Now all that is just great. But what about existing fields? Set all the tooltips individually? No way. Select ALL the fields you want to add these tooltips to, right-clic, select Set Tooltip... and specify Self. All fields will display their individual field contents. Cool or what?&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Since the Self function will return the contents of a field that it refers to, you can use tooltips to display the entire contents of a field. </p>
<p>Take the case of a list where there is limited space for a field. When a user hovers their mouse over the field, a tooltip appears that displays the entire field contents.</p>
<p>This was done in the past by defining the tooltip with the field name. Not any more - set the tooltip to Self. Then duplicate the field (with its tooltip), specify the field for the duplicate and the tooltip will display the contents of the new field.</p>
<p>Now all that is just great. But what about existing fields? Set all the tooltips individually? No way. Select ALL the fields you want to add these tooltips to, right-clic, select Set Tooltip&#8230; and specify Self. All fields will display their individual field contents. Cool or what?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Geoff Coffey</title>
		<link>http://sixfriedrice.com/wp/filemaker-9-tip5-using-the-self-function/#comment-106</link>
		<dc:creator>Geoff Coffey</dc:creator>
		<pubDate>Thu, 12 Jul 2007 00:19:35 +0000</pubDate>
		<guid>http://sixfriedrice.com/wp/filemaker-9-tip5-using-the-self-function/#comment-106</guid>
		<description>&lt;p&gt;@susan: I always knew you were a genius :) That's an awesome idea...it is such a nuisance to change out your navigation buttons on each layout. I love it.&lt;/p&gt;

&lt;p&gt;Geoff&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>@susan: I always knew you were a genius <img src='http://sixfriedrice.com/wp/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> That&#8217;s an awesome idea&#8230;it is such a nuisance to change out your navigation buttons on each layout. I love it.</p>
<p>Geoff</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Susan Prosser</title>
		<link>http://sixfriedrice.com/wp/filemaker-9-tip5-using-the-self-function/#comment-102</link>
		<dc:creator>Susan Prosser</dc:creator>
		<pubDate>Wed, 11 Jul 2007 18:28:30 +0000</pubDate>
		<guid>http://sixfriedrice.com/wp/filemaker-9-tip5-using-the-self-function/#comment-102</guid>
		<description>&lt;p&gt;I just made some navigation buttons that have the same name as the layout. Then you format it with "self = get (layoutname)." It's now bold and a different color when it appears on its own layout. Not terribly dramatic, but dead easy.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>I just made some navigation buttons that have the same name as the layout. Then you format it with &#8220;self = get (layoutname).&#8221; It&#8217;s now bold and a different color when it appears on its own layout. Not terribly dramatic, but dead easy.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
