Mandatory call of GetDDescription needed
-
THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED
On 10/02/2012 at 04:47, xxxxxxxx wrote:
User Information:
Cinema 4D Version: 13
Platform: Windows ;
Language(s) :---------
Hello,in my tag plugin, I build dynamical an combo box in the GetDDescription( ... ) function.
But this function will be called only if I select this object or tab in the attribute manager, so if this tab already open and I like to updating this combo box I need an update message or something like that. How can I do this?Marky
-
THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED
On 10/02/2012 at 07:05, xxxxxxxx wrote:
Try sending a core message:
SendCoreMessage(COREMSG_CINEMA,BaseContainer(COREMSG_CINEMA_FORCE_AM_UPDATE),0);
If that doesn't do it, you could also force the AM to re-open the tag's description by doing:
ActiveObjectManager_SetMode(ACTIVEOBJECTMODE_TAG, FALSE);
(include lib_activeobjectmanager.h from the API).