Originally Posted By: MasterQ32
easy:

use a slider value going from 0 to 1 or 0 to 100, then use this slider variable to define your own dynamic values:

value = slider_min + slider_value * (slider_max - slider_min);

For this hslider function call:

Code:
hslider(450, 514, 150, "horizontalSlider.pcx", 0, 50, transf_amt);


...would I replace the "value" variable you spoke of where the "transf_amt" variable is?

For example:

Code:
...

value = slider_min + slider_value * (slider_max - slider_min);

hslider(450, 514, 150, "horizontalSlider.pcx", 0, 50, value); 

...



...or would the "value" variable go in the max location instead, as shown here?:

Code:
...

value = slider_min + slider_value * (slider_max - slider_min);

hslider(450, 514, 150, "horizontalSlider.pcx", 0, value, transf_amt); 

...



???

Last edited by Ruben; 08/13/14 06:12.