Dear developers,
I would like to change the appearance of a group with these nice border styles after the user interacted with the interface. (inserting a filepath)
self.GroupBorderNoTitle(c4d.BORDER_NONE) # filepath fine
self.GroupBorderNoTitle(c4d.BORDER_ACTIVE_4) # orange filepath empty
self.GroupBorderNoTitle(c4d.BORDER_ACTIVE_3) # red filepath does not exist
I have a def Command(self, id, msg):
section which checks the inputs but I cannot "change" the interface cosmetically in this section - still self.SetString(1103, str(self.folder))
works as intended ...
how would this be feasible for changing elements where no dedicated "SET" is available.
thank you for your time.
mogh