FileMaker: Explore

Understanding Line Indentation in Text Fields

I recently had a student ask, “How do I get word wrapping to indent the second line, and all lines thereafter, for a standard [edit box] text field?”.

“That’s easy,” I said, and I proceeded to show the class by going into Layout Mode, selecting a large text field, turning on the text ruler and … uh… what?  I suddenly remembered that the indent tools (i.e., the “first line indent”, “left indent”, and “right indent” sliders) are only activated when a text object (or merge field) is being edited … but cannot be leveraged at all for edit boxes.

I looked up and saw the entire class staring at me, waiting, with that same smug look on their collective face: “Let’s see you explain this one, smart guy.”

After a good cry, I finally found the answer by playing with the Paragraph menu (located in Format > Line Spacing > Other… or, using the Inspector tool, on the Appearance tab > Paragraph).  By selecting the edit box and using this dialog, I set the “Left” indent to 8 pixels, and set the “First line” to -8 pixels.  This is how we tell FileMaker, “Indent by 8 pixels all lines in this word-wrapping edit box; except the first line, have that one start right up against the left margin.”

Whew.  Sometimes all we need is a good cry.

0 comments

Using Custom Extended Privileges

Over the years I have noticed that some beginner and intermediate level developers are not aware of the possible uses of extended privileges, other than as a means of controlling methods of sharing (such as through standard FileMaker Pro to Server networking, Instant Web Publishing, PHP, etc…).  Extended privileges are probably one of the most underused features in FileMaker and at the same time incredibly simple and powerful with regards to enforcing security and access control.  I have seen people write very complex scripts that attempt to manage or limit access to specific areas of a system, creating elaborate, complex security access levels or hard coding some of this security functionality within the data structure when they could have used custom extended privileges to do the same in a cleaner and most efficient manner.

What are extended privileges?  Extended privileges are just permissions that can be attached to an existing access privilege set and are used to determine whether a user has access to certain elements within a system or not. The most common type of extended access privileges are used to determine if users can access files via FileMaker networking ([fmapp]), ODCJ/JDBC, or the web publishing options.

Why are they powerful?  FileMaker allows developers with the ability to create custom extended privileges, which are basically keywords, that can be called from any script, calculation or custom function in your file. This simple feature gives you the ability to setup access control groups.

Read more ►

Searching Across Relationships for “Empty” Fields

Have you ever wanted to find records where a certain field is empty? Suppose you are updating your contact database and trying to capture email addresses for as many people as possible.  You need to find every person for whom you do not have an email address. When searching in FileMaker, the equal sign operator (=) is used to find an exact match; when used by itself in a field, with nothing else following it, it tells FileMaker to find records where the field is empty. So… easy enough, right?  Just go to the contact detail view, enter Find mode, type an equals sign into the email field (or select the symbol from the Operators popup in the toolbar), and click the Perform Find button.

But… suppose you are tracking contacts that may have multiple emails.  Such a setup probably requires a relational system where emails are stored in a separate table, with a relationship defined from the contact table to the email table. On your contact detail screen, a portal can show you the many related email addresses for each person.

In this scenario, typing the equal sign in the (related) email field isn’t going to work. The problem is that we are no longer trying to find contacts records where an email field is empty. Instead, we’re looking for contact records that do no have a related email address record. In other words, it’s not that the email field is empty (using the equal operator will find contacts where a related email address record was created but not filled in); it’s that the email record doesn’t exist. And finding a non-existent record is kind of hard. I mean, you can’t… it doesn’t exist.

Read more ►

Making an Old FileMaker System Young Again

The Support Group Helps Mass Insight Help Schools

Mass Insight is a Boston-based group that works to benefit education and provide competitive advantages to schools on multiple levels. The organization is comprised of two segments: Mass Insight Global Partnerships, a consulting firm that unites schools, companies and government agencies for the purpose of building competitive advantage, and Mass Insight Education, a non-profit affiliate that works to improve public school performance in the maths and sciences as well as help to revive the schools themselves.

The organization uses a FileMaker Pro database to store every one of their contacts for both sides of the business. As of the spring of 2009 the system was still running on 5.0, the version it was originally built in. It was a single flat file that had grown haphazardly over the years and was now a mass of entry layouts and hard-coded checkboxes that the staff used to categorize their records. The system was confusing to use; some of the labels were so old that “no one knew what anything meant,” says Joanna Manikas, VP of Business & Information Systems. “There was no common language or identifiers.” Furthermore, accurate searches were nearly impossible for users that needed to be able to pull up a set of contacts at a moment’s notice. Manikas wanted to do a lot more with the system but it was clear that a massive overhaul was needed before any new functionality could be added.

Read more ►