Python: possible to check if a description is highlighted in AO?
-
Hey everyone,
is it possible to check if a description is highlighted in the attribute manager?
My first approach:
description = op.GetObject().GetDescription(c4d.DESCFLAGS_DESC_0) for bc, paramid, groupid in description: accept = True try: name, value = bc[c4d.DESC_NAME], op.GetObject()[paramid] except: accept = False if accept: print (name, value)
What kind of highlighting I mean:
greetings
rownn -
Hi this is unfortually not possible.
Cheers,
Maxime. -
thanks.