THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED
On 02/09/2011 at 08:20, xxxxxxxx wrote:
User Information:
Cinema 4D Version: 12
Platform:
Language(s) : C++ ;
---------
I have been using a multibutton for a while just fine. But it turns out that there also a new combobutton in R12. Which looks like the exact same thing to me.
So I go to try it out and see what the differences are. And when I use the example from the docs. It doesn't work.
Here's my working multibutton code that works just fine:
LONG MY_COMBOBUTTON
{
CYCLE
{
ONE;
TWO;
}
}
Here's the non working combobutton version written based on the docs example:
COMBOBUTTON MY_COMBOBUTTON
{
CHILDS
{
ONE;
TWO;
}
}
I get .res errors in C4D pointing to the first line: COMBOBUTTON MY_COMBOBUTTON
If I change the first line to: LONG MY_COMBOBUTTON then that line seems to work(no errors).
But then I get .res errors in C4D pointing to the line the first CHILDS bracket is on.
I'm copying this straight out of the example in the docs. Why does this not work?
-ScottA