Components | All | New | MacOS | Windows | Linux | iOS | ||||
Examples | Mac & Win | Server | Client | Guides | Statistic | FMM | Blog | Deprecated | Old |
Menu.SetScriptAction
Sets which script is called if a menu item in this menu is selected.
Component | Version | macOS | Windows | Linux | Server | iOS SDK |
Menu | 4.1 | ✅ Yes | ✅ Yes | ❌ No | ❌ No | ❌ No |
MBS( "Menu.SetScriptAction"; menu; FileName; ScriptName { ; ScriptParameter } ) More
Parameters
Parameter | Description | Example | Flags |
---|---|---|---|
menu | The reference to the menu. Please create one with Menu.CreateMenu. | $menu | |
FileName | The filename of file which contains the script. | "Menus.fmp12" | |
ScriptName | The name of the script. | "MenuScript" | |
ScriptParameter | If you want a specific script parameter. Default is to leave empty and get the ID fo the menu item. |
Optional |
Result
Returns OK or error.
Description
Sets which script is called if a menu item in this menu is selected.You can use MenuItem.SetScriptAction to associate a script with individual items or use this function for a whole menu.
See also Menu.GetScriptFileName and Menu.GetScriptName.
The script parameter is the MenuItem reference, so you can use functions like MenuItem.GetTitle to get the title or MenuItem.GetTag to get an associated value.
With plugin version 6.0 or newer the script name can be a script ID number. In that case the plugin queries the script name for the given script ID. This allows to call scripts by ID and avoid problems if scripts are later renamed.
Notice: FileMaker 19.2 adds a fmplugin extended privileges. If you have such an extended privileges to allow the plugin to trigger scripts, you need to grant permissions for it. If such a privilege is not defined, the plugin is allowed to trigger scripts. See FileMaker product documentation for details.
See also
- Menu.CreateMenu
- Menu.GetScriptFileName
- Menu.GetScriptName
- MenuItem.GetTag
- MenuItem.GetTitle
- MenuItem.SetScriptAction
Example Databases
Blog Entries
This function checks for a license.
Created 18th August 2014, last changed 27th January 2016