Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Corrected code for best practice custom function use example

...

This best practice suggests you use a "class prefix" for custom functions which deal with certain FileMaker elements. Here is an example of script code:

No Format
If [ Get ( LayoutName ) = LayoutIsCustomerDetails ]
    # Do layout specific steps here...
End If

...