Topics
All
MacOS
(Only)
Windows
(Only)
Linux
(Only, Not)
iOS
(Only, Not)
Components
Crossplatform Mac & Win
Server
Client
Old
Deprecated
Guides
Examples
Videos
New in version:
12.1
12.2
12.3
12.4
12.5
13.0
13.1
13.2
13.3
13.4
Statistic
FMM
Blog
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
MBS(
"MountNotification.Install"; /* Installs a script trigger to be called when a disk mounts/unmounts. */
$FileName; /* The name of the FileMaker File that contains the script.e.g. "test.fp7" */
$ScriptName) /* The name of the script to run.e.g. "MyScript" */
Less
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
This function is free to use.
Created 24th November 2014, last changed 27th January 2016
MongoDB.WatchDatabase
-
MountNotification.Uninstall