2010-03-09 6 views
0

아이튠즈 9에서 공개 applescript 명령이 깨진 것은 맞습니까?애플 스크립트 아이튠즈 공개

작품 :

tell application "iTunes" 
play (track "Los") 
end tell 

가 작동하지 않습니다 :

tell application "iTunes" 
reveal (track "Los") 
end tell 

하지만 작업 않습니다 다음

tell application "iTunes" 
reveal (playlist "Music Videos") 
end tell 

사람이 동작을 재현 할 수 있습니까? 해결 방법은 무엇입니까?

답변

0

에서이 혀를 ou는 - 특정 트랙을 선택

tell application "iTunes" 
    reveal (track "Woo Hoo" of playlist "Music") 
end tell 

playlist "Music" 비트는 노래가있는 경우에도 필요하다 귀하의 주요 도서관 (예 : 음악 목록). 다른 재생 목록에있는 경우이를 대신 지정할 수 있습니다.

예 :

- 다른 재생 목록의 특정 트랙을 선택

tell application "iTunes" 
    reveal (track "Woo Hoo" of playlist "Sleepy Songs") 
end tell 
관련 문제