We provide a basic slider component (FISSlider)
that allows you to set characteristics such as minimum and maximum
values, continuous vs. discrete movement, and even an accompanying
audio click on value changes. The slider indicator is moved using
the mouse or programmatically via setVal()
(position of indicator is retrieved using getVal()).
The indicator can also be moved by clicking in the gutter of the
slider. The value change is immediate. Whenever the value changes,
the slider generates a sliderMsg
event (by default, but this event name can be changed).
We also provide a slider extension component, FISSliderMnMx,
which not only generates value change events like FISSlider,
but also generates two additional events: sliderMin,
when the value reaches the minimum value of the slider, and sliderMax,
when it reaches the maximum. You can change the event names programmatically
or from within the component parameter panel. |