The Maxon SDK Team is currently short staffed due to the winter holidays. No forum support is being provided between 15/12/2025 and 5/1/2026. For details see Maxon SDK 2025 Winter Holidays.
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.