我是苹果脚本的新手,我正在尝试获取所有的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
答案 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
进程的名称可以与应用程序的名称不同