#freeze
TITLE:AppleScript メモ

-[[アプリケーション起動確認>#appRun]]
-[[iTunes 選択されている曲を再生>#iTunesPlaySel]]

#br

&aname(appRun);
*アプリケーション起動確認 [#gbc8407c]
 tell application "System Events" to exists application process "iTunes"

#br

RIGHT:環境:IntelCPU+MacOS10.4.8
2006-10-XX

//-------------------------------------------------------------------------------------------------------
&aname(iTunesPlaySel);
*iTunes 選択されている曲を再生 [#td4068d0]

 tell application "iTunes"
 play selection
 end tell

※iTunesStore、ショッピングカートでは動かないようです

#br

RIGHT:環境:IntelCPU+MacOS10.4.8
2006-12-02