gpt4 book ai didi

applescript - 如何使用 AppleScript 在 Itunes 的子文件夹中选择播放列表?

转载 作者:行者123 更新时间:2023-12-02 02:05:12 27 4
gpt4 key购买 nike

此代码将返回 iTunes 中的所有播放列表:

tell application "iTunes"

get name of playlists

end tell

如何返回子文件夹中的所有播放列表?

提前谢谢你。

最佳答案

你可以尝试这样的事情:

tell application "iTunes"
set myList to {}
set myFolder to folder playlist "testFolder"

set myPlaylists to playlists
repeat with aPlaylist in myPlaylists
try
if aPlaylist's parent = myFolder then set end of myList to aPlaylist's name
end try
end repeat

return myList
end tell

关于applescript - 如何使用 AppleScript 在 Itunes 的子文件夹中选择播放列表?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15408694/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com