Filemaker Pro 12将字段内容插入到AppleScript中?

时间:2014-08-06 18:40:41

标签: applescript filemaker

我在filemaker pro 12中有一条记录,其中包含有关本地网络上用户计算机的一些基本信息。其中一个字段是IP地址字段。我想把这个字段的内容插入到一个简短的AppleScript中,当点击一个按钮时它会运行。

tell application "Screen Sharing"
    getURL "MacForm::IP Address"
end tell

MacForm是我的表单的名称,IP地址是我的字段的名称。如何将此字段的内容插入到Apple脚本中?

1 个答案:

答案 0 :(得分:0)

使用计算的AppleScript =

"tell application \"Screen Sharing\"¶    
getURL " & Quote ( MacForm::IP Address ) & "¶
end tell"

enter image description here