some icon index not find
-
Hi,
not find these icon index in py doc Icon Index page
Thanks for any help! -
Hello @chuanzhen,
Thank you for reaching out to us. Yes, some icons are not exposed in the index, we could probably revamp the script a bit which gathers the icons. Icon identifiers are often nothing more than the command IDs of the commands which use them, as icons being registered on their own is more the exception than the rule.
The yellow diamond shape is the icon of the Convert Layer to Keyframe Animation (id:
465001198
, no symbol) command. The crossed-out speaker symbol is the toggle state of the Play Sound (16391
), I currently do not see a way to get hold of this icon other than loading it directly from the texture atlas you were using in your screenshot.Cheers,
Ferdinandimport c4d # Convert Layer to Keyframe Animation clkaIcon: c4d.bitmaps.BaseBitmap = c4d.bitmaps.InitResourceBitmap(465001198) c4d.bitmaps.ShowBitmap(clkaIcon)
-
@ferdinand Thanks