Returns the current application architecture.
Get(ApplicationArchitecture)
None
Text
FileMaker Pro 14.0
Returns:
•i386 for the 32-bit version of FileMaker Pro Advanced
•x86_64 for the 64-bit version of FileMaker Pro Advanced, FileMaker Server, FileMaker Cloud, FileMaker WebDirect, the FileMaker Data API, 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
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