1
如何搜索符合特定條件的每首歌曲?例如,如:如何使用Applescript搜索iTunes?
tell application "iTunes"
set tracks to (every file track of playlist "Library" whose name contains "Green")
repeat with t in tracks
display dialog (t as string)
end repeat
end tell
啊,謝謝你指出這是一個保留字。改變它做了伎倆。謝謝! – Bill 2009-12-29 02:58:39