0

我正在通过 AppleScript 控制 iTunes,并将 URL 添加到主库(通过open location "http://...")。

有没有办法使用 AppleScript 从库中删除该条目?该 URL 非常独特,因此我不必担心删除用户的其他条目。

4

1 回答 1

0

尝试:

tell application "iTunes"
    set myUrls to get every URL track
    repeat with aUrl in myUrls
        if (aUrl's address as text) starts with "http://shiva.6o4.net:" then delete aUrl
    end repeat
end tell
于 2012-11-30T22:48:09.280 回答