Hello,
I have defined a icon for a panel in my plugin. I want that the icon should be changed on mouse over event.
The code for icon is given below.
resource PanelList (kDNDListsPaletteResourceID) {
{
// 1st panel in the list
kDNDListsPaletteResourceID, // Resource ID for this panel (use SDK default rsrc ID)
kIBPluginPluginID, // ID of plug-in that owns this panel
#if CSVER >= 4
kIsResizable,
#else
isResizable,
#endif
kIBClientPluginDNDPanelWidgetActionID, // Action ID to show/hide the panel
kIBClientPluginDNDPanelTitleKey, // Shows up in the Window list.
"", // Alternate menu path of the form "Main:Foo" if you want your palette menu item in a second place
0.0, // Alternate Menu position Alternate Menu position for determining menu order
kPlusIconPNGIconRsrcID, kIBPluginPluginID, // Rsrc ID, Plugin ID for a PNG icon resource to use for this palette
c_Panel
}
};
Where should I give the resourceID of the other icon?