Solved Change the default name of ID_OBJECTPROPERTIES

Hello,

I'm searching how to rename the default tab ID_OBJECTPROPERTIES "Object", I have created a new GROUP instead of it, this is works.
But the problem now is: when I open or my plugin object the "Basic" tab is selected by default but I want to set the new GROUP as the default selected tab.

objectproperties_name.jpg

Thanks.

hi,

after overthinking about it, adding DEFAULT 1; in your .res file should be enough.

CONTAINER pc12794
{
	NAME pc12794;
	INCLUDE Obase;


	GROUP ID_MYPERSONALTAB

	{
		DEFAULT 1;
		REAL ONEFLOAT { CUSTOMGUI REALSLIDER;}

	}


}

cheers,
Manuel

MAXON SDK Specialist

MAXON Registered Developer

hi,

after overthinking about it, adding DEFAULT 1; in your .res file should be enough.

CONTAINER pc12794
{
	NAME pc12794;
	INCLUDE Obase;


	GROUP ID_MYPERSONALTAB

	{
		DEFAULT 1;
		REAL ONEFLOAT { CUSTOMGUI REALSLIDER;}

	}


}

cheers,
Manuel

MAXON SDK Specialist

MAXON Registered Developer

@m_magalhaes said in Change the default name of ID_OBJECTPROPERTIES:

DEFAULT 1;

Thank you much.