On 2007-10-15 05:05:41 -0500, dschulian@[EMAIL PROTECTED]
said:
> On 15 Okt., 01:20, Tobias Weber <t...@[EMAIL PROTECTED]
> wrote:
>> If you don't find a way to trigger on sync you might try triggering on
>> mount, ie when the iPod ist activated as a volume.
>
> unfortunately iPhones and iPod touchs don't activate thereselves as a
> volume anymore.
>
> What I need is something like
> tell application "iTunes"
> if (update) is true then
> beep --and do other stuff
> end if
> end tell
>
> but this doesn't work...
That's because "update" is a command, not an application property you can
read.
The closest thing iTunes has to what you want is the "player state"
application property, which is listed as:
application n : The application program
properties
player state (stopped/playing/paused/fast forwarding/rewinding, r/o) :
is iTunes stopped, paused, or playing?
Obviously that's not going to help you though. You may not find a
solution here, I'm afraid.
--
Note: Please send all responses to the relevant news group. If you
absolutely must contact me through e-mail, let me know when you send
email to this address so that I can be sure your email doesn't get eaten
by pobox.com's ultra-aggressive SPAM filter.
JR


|