I am writing a mac application that uses the scripting bridge to control iTunes. I have generated the header file iTunes.h, and the SBApplication object can tell me all kinds of wonderful things.
However, the commands seem very limited. There is a 'playpause' function, but I see no way to do this
// iTunes is my SBApplication Object [iTunes play:@"Smoke On The Water"];
The Applescript to do this is the fairly simple
tell iTunes play songName
and this Scripting bridge is supposed to be the super cool and powerful way for me to control scriptable objects in Objective C, so what am I missing here?