現在のトラックを正常に取得してメッセージ(iChat)ステータスを更新する次のスクリプトがありますが、自律的に動作させるには、ループ?それのための推薦?現在のRdioで再生中の曲にメッセージ(iChat)のステータスを設定します
tell application "Rdio"
set theTrack to current track
set theArtist to artist of theTrack
set theName to name of theTrack
end tell
tell application "Messages"
if status is available then
set status message to ("♫ Playing in Rdio: " & (theArtist as string) & " - " & (theName as string))
end if
end tell
Beautiful。ありがとう! –