--- In [email protected], "Jim Robson" <[EMAIL PROTECTED]> wrote: > > I'm > building an app where the users need to manipulate values that are > very small. For example, the range of possible values for one variable > is 0.000089 - 0.000100. > ... > Does anyone have a way of overcoming this limitation? >
Not the answer, but ... Why can't you just multiply the value you are sending to slider or divide if you are receiving. What I mean: you need a value in range 0.000089 < var <0.000100 Set Slider.minimum=89, Slider.maximum=100 var=(Slider.value)/1000000 So the slider uses normal values, but you get the ones you need Just a thought...

