iTunes で現在再生中のアーティストの名前を返すこの AppleScript があります。残念ながら、アーティスト名に ú などの特殊文字が含まれていると、奇妙な文字が出力されます。どうすればこれを修正できますか?
tell application "iTunes"
if player state is playing then
try
set myTrack to artist of current track
on error
return ""
end try
return myTrack
end if
end tell