THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED
On 03/06/2011 at 14:16, xxxxxxxx wrote:
This is how to use a multi-button with C++ so that it performs an action when the user changes the button to the second option:
if (tag->GetData().GetLong(MULTIBUTTON) == TWO) // if the multi-button is set to this mode
{
GePrint("Option Two Selected");
}
Here is an example plugin with a multi-button on it as an example:https://sites.google.com/site/scottayersmedia/MyPythonTag.zip?attredirects=0&d=1
How do I write this same code in python so when I change the selection. It performs an action like my C++ code?
-ScottA