Hey,
thank you for the reply.
I managed to implement the GetSubContainer()
and ExecuteSubID()
function.
However what I don’t get to work is; How you would you specify the displayed names of the commands ?
Before when registering multiple commands, the name was specified in the same step
e.G.
```
c4d.plugins.RegisterCommandPlugin(id=“PLUGIN_CMD_123456”, str=‘New Command’, info=0, icon=None, help="", dat=self.__callBackInstance)
From the docs the [CommandData.GetSubContainer()](https://developers.maxon.net/docs/py/2023_2/modules/c4d.plugins/BaseData/CommandData/index.html#CommandData.GetSubContainer) looks like the `BaseContainer.SetString(id, s) ` function would do something like that.
bc = BaseContainer()
bc.SetString(1, "Submenu Test")
bc.SetString(1000, "First Entry")
submenu.InsData(0, bc)
But I am not entirely sure.
What would be the correct way to pass the command to the container and specify their names ?
thanks in advance
and get busy cafe :)