Filemaker:脚本“等于 1”

发布于 2024-09-03 02:29:39 字数 93 浏览 6 评论 0原文

我想在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

音盲 2024-09-10 02:29:39

脚本可以通过退出脚本步骤返回一个值。要返回布尔值,请将步骤的结果设置为表达式: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.

夜光 2024-09-10 02:29:39

您可以使用设置变量脚本步骤来设置$$variable,并使用计算引擎返回 true 或 false。

You can use the Set Variable script step to set a $$variable using the calculation engine to return true or false.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文