我正在使用 UI 脚本编写带有 applescript 的 iTunes 脚本。根据我在做什么,会出现一个 iTunes 通知,此时我需要处理它。窗口的名称是 AXWindow:"",我无法让 applescript 处理它。我尝试使用文字“”,尝试将变量定义为“”,尝试使用转义字符的两种情况,并尝试获取最前面进程的名称。
tell application "System Events"
set processName to name of front window
end tell
tell button "whatever" of window processName
click
end tell
但这会出现“错误“系统事件出现错误:无法获取窗口 1。无效索引。”任何对此的帮助将不胜感激。