确定是左键单击还是右键单击

发布于 2024-12-04 08:26:25 字数 98 浏览 1 评论 0原文

在 FileMaker Pro 中,可以轻松覆盖字段的按钮设置,以便在单击字段时运行脚本。有没有办法从这样的脚本中确定用户是左键单击还是右键单击?

谢谢,

In FileMaker Pro, it is easy to override a field's button setup so that a script is run when the field is clicked on. Is there a way from within such a script to determine if the user left-clicked or right-clicked?

Thanks,
Ben

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

小姐丶请自重 2024-12-11 08:26:25

奇怪的是,我很确定您无法单击鼠标按钮。如果可以的话,它可能是一个 Get() 函数。

我测试过:

Get(ActiveModifierKeys)

Get(TriggerModifierKeys)

都不返回鼠标点击的值,只返回键盘点击的值。

如果您是 C++ 程序员,您可以编写一个插件来创建一个新的 FileMaker 函数,该函数返回单击的鼠标按钮,但您需要在每台将使用该函数的计算机上安装该插件。

Oddly, I am pretty sure you can't get the mouse button clicked. If you could, it would probably be a Get() function.

I tested:

Get(ActiveModifierKeys)

and

Get(TriggerModifierKeys)

but neither return a value for mouse clicks, only keyboard clicks.

If you are a C++ programmer, you could write a plugin that creates a new FileMaker function that returns the mouse button clicked, but you would need to install the plugin on every machine that will use the function.

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