Filemaker:脚本“等于 1”
我想在 filemaker 中编写一个脚本,如果某个条目的 table::field = 1
则返回 true,否则返回 false。我该怎么做?
I want to write a script in filemaker which returns true if table::field = 1
for a certain entry, and false otherwise. How do I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
脚本可以通过退出脚本步骤返回一个值。要返回布尔值,请将步骤的结果设置为表达式:Table::Field = 1。Table::Field 必须在当前上下文(即布局)中可访问。结果将是您正在寻找的布尔值(技术上它将是一个数字)。要访问此值,您需要使用 Get( ScriptResult ) 函数查询它。
您描述它的方式听起来并不真正像 FileMaker,因此如果这不是您期望的答案,请提供一些您想要完成的任务的背景信息。
A script can return a value with the Exit Script step. To return a Boolean value set the step's result to your expression: Table::Field = 1. The Table::Field must be accessible in the current context (i.e. layout). The result will be the Boolean you're looking for (technically it will be a number). To access this value you need to query it with the Get( ScriptResult ) function.
The way you describe it it doesn't really sound FileMaker, so if this is not the answer you expected, please provide some context for what you're trying to accomplish.
您可以使用
设置变量
脚本步骤来设置$$variable
,并使用计算引擎返回 true 或 false。You can use the
Set Variable
script step to set a$$variable
using the calculation engine to return true or false.