FileMaker 缺少功能

FileMaker Missing Function

Set Variable [$var1; Value: Get(ScriptParameter) & " "]
Set Variable [$Clip; Value: <Function Missing>(1;$SP)]

我发现我的 Filemaker 版本不再安装一个插件导致此功能丢失。有人可以告诉我任何可以替代此 <Function Missing>

的潜在插件或功能吗

上面的脚本是整个脚本。没有文档。 $SP 变量可能是我布局中特定列和行中的数据,脚本的目标是将数据从 column/row 复制到剪贴板

函数是SetClipboardData,它的插件是ScriptMaster。确保在自定义的 scriptmaster 插件中安装 SetClipboardData 模块。

Could someone direct me to any potential plugins or functions that would replace this

There is no documentation. The $SP variable is probably the data within a certain column and row in my layout, and the goal of the script is to copy data from that column/row to the clipboard.

如果您的意思是将给定 字段 的内容复制到剪贴板,这可以通过使用 Copy script step 本机完成,例如:

Copy [Select; YourTable::SomeField]

请注意,这需要将目标字段放置在当前布局上。复制的数据将来自当前记录(或来自 YourTable table 中的第一条相关记录,具体取决于当前布局的上下文)。

或者,有几个插件提供类似的功能但限制较少(即它们可以将数据直接放在剪贴板上)。如果您在这里解释了您的局限性,那将会很有帮助——因为您显然使用了其中的一种,但现在却不用了。