Too limited Description res ?

On 09/09/2014 at 01:25, xxxxxxxx wrote:

User Information:
Cinema 4D Version:   R15 
Platform:   Windows  ;   
Language(s) :       PYTHON  ;

---------
Hello,

I am trying to make an ergonomic interface in the .res file of a description for an object plugin, but I don't understand if it's too limited or if I am doing it wrong.

Is it possible to make TAB like this ?

The TAB element return me an error in C4D.

Is it possible to resize a REAL or LONG field ?

FIT_H or SCALE_H does nothing in the REAL or LONG element. They return an error in a GROUP element. The SIZE x,y return an error too.

So what can we do in a description ? : (

On 09/09/2014 at 13:29, xxxxxxxx wrote:

Hello,

seems like the TAB element works only in dialog resources. But you can add tabs to an object's parameters by adding just some groups:

  
CONTAINER osamplegen  
{  
  NAME osamplegen;  
  INCLUDE Obase;  
  
  GROUP ID_OBJECTPROPERTIES  
  {      
      // something  
  }  
  
  GROUP GROUP_A  
  {  
      REAL SOME_PARAMETER {}  
  }  
  
  GROUP GROUP_B  
  {  
      REAL SOME_OTHER_PARAMETER {}  
  }  
}  

How exactly would yo like to resize a LONG or REAL parameter?

best wishes,
Sebastian