Hi,
I do have some Python Tags and need to display a dialog to get a yes/no user decision in certain cases.
I actually did this for a long time on macos, but know now why this leads to freezes on Windows.
My first idea for a solution was to message from the python tags to a commanddata plugin, which then would display a dialog and take action.
Is that possible and how can I do that?
CallCommand() is not allowed from a python tag and something like this doesn't seem to work either:
op = c4d.plugins.FindPlugin(PLUGIN_ID)
bc = c4d.BaseContainer()
...
op.Message(c4d.MSG_BASECONTAINER, bc)
best, index