On 19/11/2016 at 08:32, xxxxxxxx wrote:
Is there a way for know the current size of an Gedialog or at least to a group?
I don't want to change it I just want to know them for doing a dynamic UI.
Thanks in advance :)
I sucessfully know when the size is changed but not the value :/
def Message(self, msg, result) :
if msg.GetId() == c4d.BFM_SIZED:
print("Changing Dialog Dimensions")
for index, value in result:
print "Index: %i, Value: %s" % (index, str(value))
return c4d.gui.GeDialog.Message(self, msg, result)