Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.

Nutter

macrumors 6502
Original poster
Mar 31, 2005
432
0
London, England
I'm a fairly newb Cocoa programmer looking to send Apple Events to iTunes (and receive responses in some cases).

As I understand it, I have four options:
  1. Use the Carbon routines for this, which look really scary.
  2. Use NSAppleScript to generate Apple Events from AppleScripts. AFAIK I won't be able to use compiled scripts in cases where I want to use variables in my App as part of the script, so performance will suffer.
  3. Use NSAppleEventDescriptor with NSAppleScript to generate Apple Events in code. I'm not sure how difficult this would be.
  4. Use a third-party Objective-C wrapper, such as this:
    http://homepage.mac.com/nathan_day/pages/s...plescriptobject
Now, it seems to me that option 4 is the easiest way to do this with reasonable performance, as it would let me effectively pass variables into compiled scripts. However, I'm reluctant to bung someone else's code in my App without properly considering the alternatives. I'm also worried that I'd be able to get better performance by building the events programmatically, I'm just not sure I'm up to it yet.

To top it all off, I suspect that I'll need to send the events asynchronously to avoid bringing my GUI to a grinding halt, and keep it from crashing if (when) iTunes does. Is that even possible if I'm using high-level code that works from an AppleScript?

Does anyone have any advice?
 

Nutter

macrumors 6502
Original poster
Mar 31, 2005
432
0
London, England
Thanks, that looks pretty smart. Should take all the guesswork out of it!

To follow up on my last point, in your experience is it worth sending events asynchronously, or is it not worth the extra design that would involve?
 

kainjow

Moderator emeritus
Jun 15, 2000
7,958
7
Nutter said:
To follow up on my last point, in your experience is it worth sending events asynchronously, or is it not worth the extra design that would involve?
I just make the code threaded, which is a lot easier to do than making it asynchronous.
 

Nutter

macrumors 6502
Original poster
Mar 31, 2005
432
0
London, England
I was afraid you were going to say that. :rolleyes:

Should I just put the Apple Events stuff in a separate thread, or should I stick all the interface stuff in its own thread? I suppose the latter would make more sense, but then, I don't know much about threading (yet).

Thanks, I appreciate the help.
 

kainjow

Moderator emeritus
Jun 15, 2000
7,958
7
If you don't know much about threading, read and learn about it first, or else you will have nightmares :)

FYI, when using Cocoa, never access interface objects directly from another thread.
 

Nutter

macrumors 6502
Original poster
Mar 31, 2005
432
0
London, England
Sorry for bringing this thread back from the dead, but I'm a little further on now and have another question.

How do I generate an Apple Event that uses the result of a previous Apple Event?

For example, here's the AppleScript code I'm trying to duplicate:

tell application "iTunes"
set x to current track
play x
end tell

I send an event to iTunes asking for the current track, and it sends back an Apple Event Descriptor containing three nested objects.

When I subsequently send a play message to iTunes, for example, I have to pass the same three nested objects that I received as a result of the previous message. How do I do this, short of actually parsing the return event descriptor and manually generating every part of the event, which seems to me to involve making unnecessary assumptions?

Basically, I need to insert the return descriptor into my new event, right? Is this possible using AEVTBuilder?

I think I'm going to go and lie down now. :cool:
 
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.