macStatusMenuSetCustomIcon |
Type | handler |
Dictionary | mac.statusmenu |
Library | Mac Status Menu |
Syntax | macStatusMenuSetCustomIcon(<pCharacter>,<pImage>)
|
Associations | com.livecode.library.native.mac.statusmenu |
Summary | Create a custom icon for use when setting menu items
|
OS | mac |
Platforms | desktop |
Parameters | Name | Type | Description |
---|
pCharacter | | a single character to associate with the icon. May not be
c, n or m as those characters are reserved
|
pImage | | the path to an image file or a reference to an image object. If
it is an imported image then it must be in a format supported by
NSImage -initWithContentsOfFile .
|
|
Example | macStatusMenuCreate "r", the long id of image "dot"
|
Description | When creating the menu items the icon to use for the item is identified by !
followed by a character. The builtin icons are c (checkmark), n (no checkmark)
and m (mixed state). Use macStatusMenuSetCustomIcon to add another custom icon
to use.
|