使用 AppleScript 在 iTunes 中单击 "See All" Link
Click "See All" Link in iTunes with AppleScript
我正在尝试使用 AppleScript 导航 iTunes。到目前为止这是有效的,但我无法单击 "See All" link/text(下图)。
您可能会注意到有两个 "See All" 链接,一个用于 iPhone,一个用于 iPad。我正在尝试单击 iPhone。
任何指导将不胜感激!
运行 脚本编辑器中的这段代码:
tell application "System Events" to tell application process "iTunes"
get static texts of UI elements of UI elements of UI element 1 of scroll area 1 of splitter group 1 of window 1 whose name is "See All"
end tell
这应该会为您提供名为 "See All" 的所有静态文本。反复试验,直到找到正确的那个。
我使用的技巧是使用 "static texts of UI elements of UI elements" 等,直到找到我正在寻找的静态文本。你应该能够用任何东西做到这一点。寻找按钮?将 static texts
替换为 buttons
,等等
我正在尝试使用 AppleScript 导航 iTunes。到目前为止这是有效的,但我无法单击 "See All" link/text(下图)。
您可能会注意到有两个 "See All" 链接,一个用于 iPhone,一个用于 iPad。我正在尝试单击 iPhone。
任何指导将不胜感激!
运行 脚本编辑器中的这段代码:
tell application "System Events" to tell application process "iTunes"
get static texts of UI elements of UI elements of UI element 1 of scroll area 1 of splitter group 1 of window 1 whose name is "See All"
end tell
这应该会为您提供名为 "See All" 的所有静态文本。反复试验,直到找到正确的那个。
我使用的技巧是使用 "static texts of UI elements of UI elements" 等,直到找到我正在寻找的静态文本。你应该能够用任何东西做到这一点。寻找按钮?将 static texts
替换为 buttons
,等等