Technique to Quickly Load Buttons in FileMaker

By Dawn Heady

Today I want to share with you a technique I use for storing and loading button images across my FileMaker database solution. While I’ve used this technique since  in FileMaker 11, its become even more powerful with the padding and outer glow features of FileMaker Pro 13. This technique has a few moving parts to setup, but once created it is very easy to add support for additional buttons. Download the attached sample file ResourceButtons.fmp12.zip or create your own solution.

Since global fields are accessible to any layout without having a relationship to the table occurrence the layout is based on, they are excellent for displaying interface elements. Global fields, including global container fields, will retain the value they have at the last time the file was closed when open locally. But when the file is hosted by FileMaker Server, any data you enter in a global field is not retained.

Create a table where you will store all the interface elements. I call it Resource. Then create a global field named z_Load_Globals_Trigger_g. It’s purpose will be revealed shortly.

This technique involves creating a pair of fields for each button. The first is a standard container field and named something like btn_New. It’s global counterpart is named the same with the addition of the suffix _g, so would be btn_New_g for this example.

Then add this auto enter calculation to the global field:

// Get value of field with same name, minus the _g suffix
Let (
  [
    gName = GetFieldName ( Self ) ;  
    fieldName = Left ( gName ; Length ( gName ) - 2 )
  ] ;
  Evaluate ( fieldName ; z_Load_Globals_Trigger_g )
)

Technique to Quickly Load Buttons in FileMaker.

Liked Liked
Need FileMaker Development Help? Or to purchase FileMaker Software?
Contact FM Pro Gurus for help