このコードを使用して、iTunes で選択した各トラックを AppleScript Obj-C のリストに追加しています。
tell application "iTunes"
set these_titles to {}
if selection is not {} then
set mySelection to selection
repeat with aTrack in mySelection
if class of aTrack is file track then
set end of these_titles to ((name of aTrack) as string)
end if
end repeat
end if
end tell
GUI のテキスト ボックスに出力を表示する次の行があります。
trackTable's setStringValue_(these_titles)
しかし、それは次のようになります。
引用符と括弧を使わずに、各リスト項目を 1 行で取得する方法はありますか?