Components | All | New | MacOS | Windows | Linux | iOS | ||||
Examples | Mac & Win | Server | Client | Guides | Statistic | FMM | Blog | Deprecated | Old |
Query an argument passed to FileMaker from command line.
Component | Version | macOS | Windows | Linux | Server | iOS SDK |
FM | 5.1 | ✅ Yes | ✅ Yes | ✅ Yes | ✅ Yes | ✅ Yes |
Parameter | Description | Example |
---|---|---|
index | The index of the argument to retrieve. From 0 to FM.ArgumentCount-1. | 0 |
Returns text or error.
Query all arguments:
While(
// setup
[count = MBS( "FM.ArgumentCount" ); index = 0; list = ""];
// condition
index < count ;
// add nth argument to list
[ list = list & MBS( "FM.Argument"; index ) & ¶; index = index + 1 ];
// return result
list )
This function is free to use.
Created 1st March 2015, last changed 13th June 2021