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
    • Unread
    • Recent
    • Tags
    • Users
    • Login

    Attribute Manager Spacing

    Scheduled Pinned Locked Moved PYTHON Development
    3 Posts 0 Posters 468 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

      On 29/08/2017 at 11:06, xxxxxxxx wrote:

      Hi, I wanted to have a space between two elements in the Attribute Manager. I was able to create a space in Pre R18 on Mac and Pre R17 by using a separator like this.

      .res
        
      GROUP
      { 
                  COLUMNS 4;
                  BUTTON BUTTON1{}
                  BUTTON BUTTON2{}
                  
                  SEPARATOR EMPTYSEP{SCALE_H;LINE;}
                  BUTTON BUTTON3{}
      }
        
      .str
        
      STRINGTABLE Test
      { 
      	BUTTON1 "Insert Render Settings";
      	BUTTON2 "Open Browser";
      	EMPTYSEP "NONE";
      	BUTTON3 "?";
        
      }
        
      
      

      In Pre R19 it looks like this:

      In R19 it looks like this:

      It's no longer working, is there something I can do to fix it or an alternative way to achieve the same effect?

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

        On 31/08/2017 at 06:17, xxxxxxxx wrote:

        Hi DSchimdt,

        i confirm that the behavior you mentioned as present R19 it's indeed the correct one and it's also the same visual you got in R18 and R17. In any case to achieve the desired visual please use:
        .res

          
        GROUP  
        {   
          COLUMNS 4;  
          BUTTON BUTTON1{}  
          BUTTON BUTTON2{}  
          STATICTEXT EMPTYSEP{SCALE_H;}  
          BUTTON BUTTON3{}  
        }  
        

        .str

          
        BUTTON1 "Insert Render Settings";  
        BUTTON2 "Open Browser";  
        STEXT "";  
        BUTTON3 "?";  
        

        Best, Riccardo

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

          On 31/08/2017 at 16:24, xxxxxxxx wrote:

          This worked perfectly, thank you very much!

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