我正在使用 Inductive Automation 的 Ignition HMI(java 后端)软件中的 python 脚本。我正在尝试编写一个脚本来定位与某些对象相关的其他脚本。目前我有
result = window.getRootContainer().getComponent("Group 1").getComponent("TheObject").mouseClicked
它获取显示我的对象的窗口,进入该对象的根容器,然后是对象所在的组,最后是绑定到 TheObject 上的 mouseClicked 事件的脚本。当我运行它并打印结果时,我没有收到错误,但是:
<CompoundCallable with 0 callables>
有没有人见过这个?有谁知道我可能需要在第一行代码中更改哪些内容才能访问存储在 mouseClicked 脚本中的实际数据?