Re: Play Playlist in iTunes

2008-10-01 Thread Loren Ryter
You can't play a playlist. You have to play a track on it -- either the first track or a random track. On 10/1/08 1:51 PM, "Mr. Gecko" <[EMAIL PROTECTED]> wrote: > Hello I am needing to know how to play a playlist in iTunes using > AppleEvents. I am able to get the Playlist ID and the Playlist >

Displaying high PPI image at proper size

2008-06-18 Thread Loren Ryter
Hello all. I'm trying to make sure any image included in an RSS feed is displayed at the proper size. I've found some images, such as netflix, store 300 dpi images, which when displayed (in a Growl notification) appear at about 24% of their "actual" size. The example I'm working with is this:

Re: Newbie: applescript "call method" to obj-c method (booleans & image data)

2008-06-14 Thread Loren Ryter
On 06/14/08 12:17 PM, "Graham Cox" <[EMAIL PROTECTED]> wrote: > BOOL* means "pointer to BOOL" not BOOL itself. So you need to remove > the *. This worked brilliantly thanks a lot! I literally spent 3 hours on that ;-) > >> iconData:[NSImage initWithContentsOfFile:aPath] > > should be i

Newbie: applescript "call method" to obj-c method (booleans & image data)

2008-06-14 Thread Loren Ryter
Hell all, I'm struggling through learning some basic obj-c to implement some functions that are not supported in applescript, by creating custom obj-c classes and passing parameters to those classes using call methods. Not doing terribly badly, but it's slow going given my level of understanding.