On 11/08/2013 at 10:30, xxxxxxxx wrote:
User Information:
Cinema 4D Version:
Platform:
Language(s) :
---------
I used the good solution by Remo, found here, on how to dynamically add items to a dropdown list:
https://plugincafe.maxon.net/topic/6963/7843_dynamically-update-a-dropdowncycle&KW=GetDDescription&PID=32482#32482
But how do I read them? I can easily get the index, no problem. And of course I can store an array with the item text strings elsewhere. But is there a way to read out the text directly?
I want to do this in the message method.
Bool MyTag::Message (GeListNode* node, LONG type, void* data)
{
LONG selectedItemIndex = bc->GetLong(MY_DROPDOWNLIST);
}
The code is simplified.