Components | All | New | MacOS | Windows | Linux | iOS | ||||
Examples | Mac & Win | Server | Client | Guides | Statistic | FMM | Blog | Deprecated | Old |
MountNotification.Install
Installs a script trigger to be called when a disk mounts/unmounts.
Component | Version | macOS | Windows | Linux | Server | iOS SDK |
Files | 5.0 | ✅ Yes | ✅ Yes | ❌ No | ❌ No | ❌ No |
MBS( "MountNotification.Install"; FileName; ScriptName ) More
Parameters
Parameter | Description | Example |
---|---|---|
FileName | The name of the FileMaker File that contains the script. | "test.fp7" |
ScriptName | The name of the script to run. | "MyScript" |
Result
Returns OK or error.
Description
Installs a script trigger to be called when a disk mounts/unmounts.Parameter to the script will contain details in a list with several values.
First value is typ of call, "mount" or "unmount".
Second value is native path, on Mac e.g. "/Volumes/TestDisk" and on Windows a drive letter like "E:\".
On Mac third value is user visible name and forth parameter is URL for mount point.
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.
Examples
Installs notification script:
MBS( "MountNotification.Install"; "test.fp7"; "MyScript" )
See also
Example Databases
Blog Entries
- MBS FileMaker Plugin 5.0 for OS X/Windows - More than 3000 Functions In One Plugin
- MBS Filemaker Plugin, version 4.5pr1
This function is free to use.
Created 24th November 2014, last changed 27th January 2016
