Platforms to show: All Mac Windows Linux Cross-Platform

GrowlApplicationBridgeMBS.kApplicationIcon = "ApplicationIcon"
Type Topic Plugin Version
const Growl MBS MacExtras Plugin 11.3
Function: One of the keys for the registration dictionary.
Notes:
The image data for your application's icon.
Image data representing your application's icon. This may be superimposed on a notification icon as a badge, used as the notification icon when a notification-specific icon is not supplied, or ignored altogether, depending on the display. Must be in a format supported by NSImage, such as TIFF, PNG, GIF, JPEG, BMP, PICT, or PDF.

Optional. Not supported by all display plugins.
GrowlApplicationBridgeMBS.kApplicationId = "ApplicationId"
Type Topic Plugin Version
const Growl MBS MacExtras Plugin 11.3
Function: One of the keys for the registration dictionary.
Notes:
The bundle identifier of your application.
The bundle identifier of your application. This key should be unique for your application while there may be several applications with the same kApplicationName.
This key is optional.
GrowlApplicationBridgeMBS.kApplicationName = "ApplicationName"
Type Topic Plugin Version
const Growl MBS MacExtras Plugin 11.3
Function: One of the keys for the registration dictionary.
Notes:
The name of your application.
The name of your application. This should remain stable between different versions and incarnations of your application.
For example, "SurfWriter" is a good app name, whereas "SurfWriter 2.0" and "SurfWriter Lite" are not.
GrowlApplicationBridgeMBS.kApplicationPID = "ApplicationPID"
Type Topic Plugin Version
const Growl MBS MacExtras Plugin 11.3
Function: One of the keys for the notification dictionary.
Notes:
The process identifier of the process which sends this notification. If this field is set, the application will only receive clicked and timed out notifications which originate from this process.

Optional.
GrowlApplicationBridgeMBS.kGrowlNotificationIdentifier = "GrowlNotificationIdentifier"
Type Topic Plugin Version
const Growl MBS MacExtras Plugin 11.3
Function: One of the keys for the notification dictionary.
Notes:
An identifier for the notification for coalescing purposes.

Notifications with the same identifier fall into the same class; only the last notification of a class is displayed on the screen. If a notification of the same class is currently being displayed, it is replaced by this notification.

Optional. Not supported by all display plugins.
GrowlApplicationBridgeMBS.kNotificationAppIcon = "NotificationAppIcon"
Type Topic Plugin Version
const Growl MBS MacExtras Plugin 11.3
Function: One of the keys for the notification dictionary.
Notes:
Image data for the application icon, in case kNotificationAppIcon does not apply for some reason. Image data be in a format supported by NSImage, such as TIFF, PNG, GIF, JPEG, BMP, PICT, or PDF.

Optional. Not supported by all display plugins.
GrowlApplicationBridgeMBS.kNotificationClickContext = "NotificationClickContext"
Type Topic Plugin Version
const Growl MBS MacExtras Plugin 11.3
Function: One of the keys for the notification dictionary.
Notes:
Identifies which notification was clicked.

An identifier for the notification for clicking purposes.

This will be passed back to the application when the notification is clicked. It must be plist-encodable (a data, dictionary, array, number, or string), and it should be unique for each notification you post. A good click context would be a UUID string returned by UUIDMBS class.

Optional. Not supported by all display plugins.
GrowlApplicationBridgeMBS.kNotificationDescription = "NotificationDescription"
Type Topic Plugin Version
const Growl MBS MacExtras Plugin 11.3
Function: One of the keys for the notification dictionary.
Notes:
The description to display in the notification.
The description should be longer and more verbose than the title.
The description usually tells the subject of the action, e.g. "Growl-0.6.dmg downloaded in 5.02 minutes".
GrowlApplicationBridgeMBS.kNotificationIcon = "NotificationIcon"
Type Topic Plugin Version
const Growl MBS MacExtras Plugin 11.3
Function: One of the keys for the notification dictionary.
Notes:
Image data for the application icon, in case kNotificationAppIcon does not apply for some reason. Image data be in a format supported by NSImage, such as TIFF, PNG, GIF, JPEG, BMP, PICT, or PDF.

Optional. Not supported by all display plugins.
GrowlApplicationBridgeMBS.kNotificationName = "NotificationName"
Type Topic Plugin Version
const Growl MBS MacExtras Plugin 11.3
Function: One of the keys for the notification dictionary.
Notes:
The name of the notification.
The name of the notification. Note that if you do not define kNotificationsHumanReadableNames when registering your ticket originally this name will the one displayed within the Growl preference pane and should be human-readable.
GrowlApplicationBridgeMBS.kNotificationPriority = "NotificationPriority"
Type Topic Plugin Version
const Growl MBS MacExtras Plugin 11.3
Function: One of the keys for the notification dictionary.
Notes:
The priority of the notification as an integer number from -2 to +2 (+2 being highest).
Optional. Not supported by all display plugins.
GrowlApplicationBridgeMBS.kNotificationProgress = "NotificationProgress"
Type Topic Plugin Version
const Growl MBS MacExtras Plugin 11.3
Function: One of the keys for the notification dictionary.
Notes:
If this key is set, it should contain a double value which describes some sort of progress (from 0.0 to 100.0).
If this is key is not set, no progress bar is shown.

Optional. Not supported by all display plugins.
GrowlApplicationBridgeMBS.kNotificationsAll = "AllNotifications"
Type Topic Plugin Version
const Growl MBS MacExtras Plugin 11.3
Function: One of the keys for the registration dictionary.
Notes: The array of all notifications your application can send.
GrowlApplicationBridgeMBS.kNotificationsDefault = "DefaultNotifications"
Type Topic Plugin Version
const Growl MBS MacExtras Plugin 11.3
Function: One of the keys for the registration dictionary.
Notes:
The array of notifications to turn on by default.
These are the names of the notifications that should be enabled by default when your application registers for the first time. If your application reregisters, Growl will look here for any new notification names found in kNotificationsAll, but ignore any others.
GrowlApplicationBridgeMBS.kNotificationsDescriptions = "NotificationDescriptions"
Type Topic Plugin Version
const Growl MBS MacExtras Plugin 11.3
Function: One of the keys for the registration dictionary.
Notes:
A dictionary of descriptions of _when_ each notification occurs

This is an Dictionary whose keys are kNotificationName strings and whose objects are descriptions of _when_ each notification occurs, such as "You received a new mail message" or "A file finished downloading".

This key is optional.
GrowlApplicationBridgeMBS.kNotificationsHumanReadableNames = "HumanReadableNames"
Type Topic Plugin Version
const Growl MBS MacExtras Plugin 11.3
Function: One of the keys for the registration dictionary.
Notes:
A dictionary of human-readable names for your notifications.

By default, the Growl UI will display notifications by the names given in kNotificationsAll which correspond to the kNotificationName. This dictionary specifies the human-readable name to display.
The keys of the dictionary are kNotificationName strings; the objects are the human-readable versions.
For any kNotificationName not specific in this dictionary, the kNotificationName will be displayed.

This key is optional.
GrowlApplicationBridgeMBS.kNotificationSticky = "NotificationSticky"
Type Topic Plugin Version
const Growl MBS MacExtras Plugin 11.3
Function: One of the keys for the notification dictionary.
Notes:
A Boolean number controlling whether the notification is sticky.
Optional. Not supported by all display plugins.
GrowlApplicationBridgeMBS.kNotificationTitle = "NotificationTitle"
Type Topic Plugin Version
const Growl MBS MacExtras Plugin 11.3
Function: One of the keys for the notification dictionary.
Notes:
The title to display in the notification.
Should be very brief. The title usually says what happened, e.g. "Download complete".
GrowlApplicationBridgeMBS.kTicketVersion = "TicketVersion"
Type Topic Plugin Version
const Growl MBS MacExtras Plugin 11.3
Function: One of the keys for the registration dictionary.
Notes:
The version of your registration ticket.
Include this key in a ticket plist file that you put in your application bundle for auto-discovery. The current ticket version is 1.

The items on this page are in the following plugins: MBS MacExtras Plugin.


💬 Ask a question or report a problem
The biggest plugin in space...