Script UI slider issue!!!
I have a strange issue with slider control. If I set the preferred width it gives decimal value, If I remove the width "works" fine!!!!!! Any idea why is this happening? You also have the same issue or it's just me?
Thank you in advance!!!
var slider1 = group1.add("slider");
slider1.minvalue = 0;
slider1.maxvalue = 100;
slider1.value = 0;
slider1.preferredSize.width = 195;
slider1.preferredSize.height = 15;
slider1.onChanging = function(){edittext2.text = this.value;};
