Re: NSSlider changed notification

2009-03-11 Thread Steve Christensen
As previous replies have mentioned, if you're looking for continuous change, you need to make sure that "continuous" is set to YES, either by checking "continuously send action while sliding" in IB or by calling [mySlider setContinuous:YES]. You could keep track of changes to the slider val

Re: NSSlider changed notification

2009-03-10 Thread Randall Meadows
On Mar 10, 2009, at 12:03 PM, David Alter wrote: Hi All, I'm sure this is something basic that I'm just missing. For some reason I can not find how to get a notification when my slider changes value. I want to be able to subscribe to receive a notification if the slider value changes. Is th

Re: NSSlider changed notification

2009-03-10 Thread Kyle Sluder
NSSlider fires its action when the value changes. If its continuous property is YES, this happens while the user drags the widget. Otherwise it only sends its action when the mouse is released. --Kyle Sluder ___ Cocoa-dev mailing list (Cocoa-dev@lists.

NSSlider changed notification

2009-03-10 Thread David Alter
Hi All, I'm sure this is something basic that I'm just missing. For some reason I can not find how to get a notification when my slider changes value. I want to be able to subscribe to receive a notification if the slider value changes. Is there a delegate method for this? What is the best way to g