在我的脚本中使用UI元素给出了“预期的类名但找到了标识符”。语法错误

时间:2016-08-17 07:21:25

标签: applescript

我是苹果脚本的新手,我正在尝试获取所有的UIElements,这是我的代码

tell application "Myapp"
set visible to true
return every UI element of front window
return name of every UI element of front window
end tell

我从here获得了此代码 任何人都可以帮我摆脱这个 注意:我的操作系统是OS X El Capitan 10.11.1

1 个答案:

答案 0 :(得分:1)

您必须询问应用程序的进程 - 系统事件知道哪些信息。

tell application "System Events"
  tell process "Myapp"
     set visible to true
     return every UI element of front window
     -- return name of every UI element of front window
  end tell 
end tell 

进程的名称可以与应用程序的名称不同