Tip of the day: Detect MBS FileMaker Plugin
Set Variable [$r; Value: Evaluate("MBS(\"Version\")") ]Sometimes it may be good to test on solution startup and ask user to install plugin if it is missing.
If [GetAsText($r) = "?"]
Show Custom Dialog ["MBS Plugin not installed"]
Else
Show Custom Dialog ["MBS Plugin installed in version: " & $r]
End If
Or to use the script step to install plugin.
We use evaluate in the example above as you can code this without actually having the plugin. So FileMaker will not show a missing function in editor.