Is it possible to subscribe to events using py-appscript ?

Example: I'd like to get a callback when a user changes a rating on iTunes.

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

Some very few applications are recordable: that is, they'll send Apple Events to themselves which can be intercepted. iTunes is not one of these applications. iTunes does send distributed notifications for music start/stop, but not for rating changes. Assuming you don't want to patch iTunes itself, your only real choice is to parse iTunes Music Library.xml.

link|improve this answer
thanks for your answer. Just one small note: there is no need to parse the database.xml directly though: I found the way to access the data through py-appscript. – jldupont Oct 1 '10 at 21:40
Of course you can do it that way too; I just meant it'd be a file you can watch for changes. – Nicholas Riley Oct 1 '10 at 21:51
how silly of me! Thanks again! – jldupont Oct 1 '10 at 21:58
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.