New drop-down groups. How?

THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED

On 22/09/2006 at 01:22, xxxxxxxx wrote:

User Information:
Cinema 4D Version:   9.6 
Platform:   Windows  ;   
Language(s) :     C++  ;

---------
There are new cool drop-down groups in MoGraph and Hair modules.
_<_img border="0" src= "http://img76.imageshack.us/img76/383/newc4dgadged4.jpg"_>_
How to implement it in ObjectData plugins?
Is it possible?

THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED

On 22/09/2006 at 01:48, xxxxxxxx wrote:

Yes, it is possible - and they are not new (go back to R8.0 at least). The look is new that's about it. :)

Thing is these are not 'drop-down groups' (terminologically speaking). They are 'foldable groups'. That might get you started on finding them. ;)

In order to create foldable groups in the Attributes Manager, you create the group in the associated .res file for your plugin, in this format:

GROUP GROUP_ID
{
     DEFAULT          1;
}

You can find more in the C++ SDK documentation under 'doc GROUP' (type in "group").

THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED

On 22/09/2006 at 02:01, xxxxxxxx wrote:

You're right.
Thanks a lot!
I beg your pardon for my stupidity!