Functions Reference

Table Of Contents
Get functions
F
ILEMAKER FUNCTIONS REFERENCE 118
Get(ApplicationArchitecture)
Purpose
Returns the current application architecture.
Format
Get(ApplicationArchitecture)
Parameters
None
Data type returned
Text
Originated in
FileMaker Pro 14.0
Description
Returns:
i386 for the 32-bit version of FileMaker Pro
x86_64 for the 64-bit version of FileMaker Pro, FileMaker Server, FileMaker WebDirect, and
Custom Web Publishing
arm7 for FileMaker Go running on an ARMv7-based device
arm7s for FileMaker Go running on an ARMv7s-based device
arm64 for FileMaker Go running on a 64-bit ARM-based device
Example 1
Detects the application architecture, then installs the appropriate version of a plug-in.
If [Get ( ApplicationArchitecture ) = "i386"]
Install Plug-in File [Plugins::32bit]
Else If [Get ( ApplicationArchitecture ) = "x86_64"]
Install Plug-in File [Plugins::64bit]
End If