On 03/03/2015 at 03:32, xxxxxxxx wrote:
In the manual I read:
GeDialog.SetFloat(id, value[, min=MINVALUE_FLOAT][, max=MAXVALUE_FLOAT][, step=1.0][, format=FORMAT_FLOAT][, min2=0.0][, max2=0.0][, quadscale=False][, tristate=False])
However when I use following code, it gives me an error "MAXVALUE_FLOAT UNDEFINED".
Using c4d.MAXVALUE_FLOAT it tells me "object has no attribute MAXVALUE_FLOAT"
self.SetFloat(MY_RADIANTPOWER, 50.0, 0.0, max=200.0, step=1.0, max2=MAXVALUE_FLOAT)
-Pim