Maxon Developers Maxon Developers
    • Documentation
      • Cinema 4D Python API
      • Cinema 4D C++ API
      • Cineware API
      • ZBrush Python API
      • ZBrush GoZ API
      • Code Examples on Github
    • Forum
    • Downloads
    • Support
      • Support Procedures
      • Registered Developer Program
      • Plugin IDs
      • Contact Us
    • Categories
      • Overview
      • News & Information
      • Cinema 4D SDK Support
      • Cineware SDK Support
      • ZBrush 4D SDK Support
      • Bugs
      • General Talk
    • Recent
    • Tags
    • Users
    • Register
    • Login

    tab's

    Scheduled Pinned Locked Moved SDK Help
    5 Posts 0 Posters 446 Views
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • H Offline
      Helper
      last edited by

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

      On 24/03/2005 at 12:05, xxxxxxxx wrote:

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

      ---------
      Hi,
      how can i add tabs to the attribute manager.
      i am using the tagdata plugin

      1 Reply Last reply Reply Quote 0
      • H Offline
        Helper
        last edited by

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

        On 24/03/2005 at 12:55, xxxxxxxx wrote:

        tabs? The resouces have GROUP elements that automatically add quicktabs to the AM. You don´t have to code them yourself.

        1 Reply Last reply Reply Quote 0
        • H Offline
          Helper
          last edited by

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

          On 24/03/2005 at 14:11, xxxxxxxx wrote:

          Can i use these with description res files too ?

          1 Reply Last reply Reply Quote 0
          • H Offline
            Helper
            last edited by

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

            On 24/03/2005 at 15:59, xxxxxxxx wrote:

            yes, they are used in the description res files. Just have a look at other C++ plugins with description resources (.res files as you correctly stated). They have the

            GROUP ID

            flag, which will automatically add a new quicktab if you specify the ID part. means, you give it a "name" and then list this "name" in your description .h file (and in the .str file of course, so Cinema knows what string to show as tab name).

            //In your .res file

            GROUP MY_GROUP_NAME
            {
            //Add elements in here. Example:
            REAL ID_OF_ELEMENT {MIN 0;MAX 100; STEP 0.01;}
            }

            //In your .h file (Example code)

            enum
            {
            MY_GROUP_NAME = 1000,
            ELEMENT_IDs,
            [...]

            _MY_DUMMY_
            };

            //In your .str file

            MY_GROUP_NAME "Tab Name";

            Hope that helps

            1 Reply Last reply Reply Quote 0
            • H Offline
              Helper
              last edited by

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

              On 25/03/2005 at 02:04, xxxxxxxx wrote:

              Got it, it works...
              Ok, thanks so much...

              1 Reply Last reply Reply Quote 0
              • First post
                Last post