Hello,

I'm sorry if this is something that's document somewhere that I've
overlooked, but I'm having issues using the GROWL_NOTIFICATION_NAME
option in my notification dictionary.

I have a notification that I want to use the "Music Video" plugin. The
notification posts but it always uses the default style. I'm
registering my notification using the delegate method

 - (NSDictionary) registrationDictionaryForGrowl {
NSArray *names = [NSArray arrayWithObjects:@"Now Playing", nil];
NSDictionary *dict =  [NSDictionary
dictionaryWithObjectsAndKeys:names,GROWL_NOTIFICATIONS_ALL,names,GROWL_NOTIFICATIONS_DEFAULT,nil];
return [GrowlApplicationBridge
registrationByFillingInDictionary:dict];
}

And then I'm constructing my notification like so:

NSDictionary *notification = [NSDictionary
dictionaryWithObjectsAndKeys:@"title",GROWL_NOTIFICATION_TITLE,
@"description",GROWL_NOTIFICATION_DESCRIPTION, [NSNumber numberWithInt:
0], GROWL_NOTIFICATION_PRIORITY, [NSNumber numberWithBool:NO],
GROWL_NOTIFICATION_STICKY, [NSDate date],
GROWL_NOTIFICATION_CLICK_CONTEXT,
@"Now Playing", GROWL_NOTIFICATION_NAME, @"Music Video",
GROWL_DISPLAY_PLUGIN, nil];

-----

Only thing I can think of is maybe there's some options in the
registration dictionary that supply the plugin name for the
notification?
Any help would be great, thanks.

-Joe

-- 
You received this message because you are subscribed to the Google Groups 
"Growl Discuss" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/growldiscuss?hl=en.

Reply via email to