THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED
On 02/11/2010 at 13:06, xxxxxxxx wrote:
User Information:
Cinema 4D Version: 12
Platform:
Language(s) : PYTHON ;
---------
I have a working GeDialog and it is no problem to initiate the gadgets with values for example a bool: self.SetBool(GI_CheckB, GI_CheckB_read)
but the Slider(GeDialog.AddSlider(id, flags[, initw=80][, inith=0])) makes problems.
for example for
print self.SetReal(GI_slider, 50.0)
or
print self.SetReal(GI_slider, 50)
I get a False
I only get True with
print self.SetString(GI_slider, 50)
??
ether way there is no posibility to use the slider once it got a value. It freezes at -1e+308
am I mistaken, or is something wrong :)
thanks a lot
Jops