I’ve got a vertical linear slider and a sliderListener. The slider behaves well visually, but if I click and hold on the slider, and then begin to move it around, none of the changes in the sliders value are getting through to my sliderValueChanged() routine.
This problem seems specific to the Mac. Is there an issue getting asynchronous message updates while the mouse is down or tracking? Would I be better off subclassing the slider class to do something when the slider values are updated than to rely on messages to the listener? Would it help if the slider sent synchronous messages instead of asynchronous ones?