确定是左键单击还是右键单击
在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
奇怪的是,我很确定您无法单击鼠标按钮。如果可以的话,它可能是一个 Get() 函数。
我测试过:
但
都不返回鼠标点击的值,只返回键盘点击的值。
如果您是 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:
and
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.