NSSlider object belongs to Apple's class it displays a range of values. NSSlider can be used for volume control, colors selection, brightness adjust, etc.. It has continous and discrete modes.

learn more… | top users | synonyms

0
votes
1answer
70 views

Setting the position/width of an NSSlider inside an NSMenuItem

I've got an NSMenu attached to an NSStatusItem, and inside that NSMenu I have a NSMenuItem for which I've set the view property to an NSSlider object. That works (it got me what I was after) almost. ...
1
vote
1answer
41 views

How to connect an NSControl to an Action *and* a label in IB?

I'm trying to connect an NSSlider to both a label (takeIntValueFrom) to show its value, and an IBAction in my .xib. However, connecting either one of them un-connects the other. I could do this ...
0
votes
3answers
236 views

How to create a custom NSSlider with a transparent middle bar and custom knob size

I've searched around for some code on NSSliderCell but I can't find a way to do what I'm looking for. I'd like to create something like this (where the white line is the slider knob, 1 pixel width): ...
0
votes
2answers
58 views

how to move a popover along with slider button

I have a custom slider for volume and I want the current value of the slider to be displayed in a popover what I already have so far, see picture below. Unfortunately at the moment the popover is ...
1
vote
1answer
40 views

Automatilcally transform slider value

I have a slider, bind it with text field. It is possible automatically transform value to this format: Example 01 02 03 04 05 06 .. 13 14 15 ..? Thanks!
1
vote
1answer
109 views

NSSlider popover

I have a custom NSSlider. Because of lacking space I want to show the value of it only when the user hovers over the slider. Just like this one: http://dribbble.com/shots/754412-Range-Selection I ...
0
votes
1answer
52 views

How can I link and update multiple NSSliders?

I have 3 NSSliders and NSTextFields set with bindings. Each slider represents an NSInteger value, one column is low, one column is medium and one column is high. I've set Low's max to 98, Medium's ...
0
votes
1answer
60 views

How can I get the tag of an NSSliderCell Objective-C

I´m working on a CustomSlider Class. In my project I have three sliders which all have the class CustomSlider. I want these three sliders to have different knobs. See Picture. Since the sliders ...
1
vote
0answers
77 views

Programmatic start NSSlider dragging

I would like to start a slider action programmatically. So pressing on some text in a NSTextView that displays a slider also automatically starts the mousedown event on the slider so you can drag ...
1
vote
1answer
97 views

How to colorize the portion left of the knob on a NSSlider

In my project an NSSlider controls the volume of a AVPlayer. I'd like to colorize the portion of the NSSlider left of the knob. How can this be achieved?
2
votes
2answers
140 views

Best strategy to handle incoming midi signal from MIDIReadProc in cocoa

I have to move some NSSlider by hardware midi controller, I have programmed a midi learn procedure to assign hardware cursor to NSSlider(sub class of), and up there it's all right. Inside ...
0
votes
2answers
138 views

Invoke NSControl's “valueChanged” when changing values programmatically

I am about to implement a simple audio fader. I subclassed NSSlider and NSSliderCell to be able to draw the graphics accordingly. I want the slider to jump to a defined position whenever the handle ...
0
votes
1answer
443 views

NSUndoManager: redo not working

I am making a simple application that uses a NSSlider, which can be put to it's max or min value with two buttons.The undo manager shall track all changes and allow to undo/redo all changes made using ...
0
votes
2answers
529 views

IOS NSSlider set label from array (at index: slider value)

I'd like to have a slider (lets say values from 0 to 4) and an according label which content does NOT display the current slider value BUT an according string. I'm quite new to Objective-C but here ...
0
votes
0answers
87 views

replace Interface Builder plugins

I still use Xcode 3.2.6 and I want to move to Xcode 4, but first I need to make my projects "independent" from Interface Builder plugins (since they're no more supported in Xcode 4). Let's make an ...
0
votes
1answer
103 views

Extend NSSlider class by appending a NSTextField to it

I want to extend NSSlider class to have an output textfield appended to it. In regards to this I wonder if: my approach of wanting to append a textfield to NSSlider class is completely wrong and ...
1
vote
0answers
113 views

App specific volume

Is there any way to change the app volume using a NSSlider? I would like to change the volume for the current app only, but not the system volume.
2
votes
1answer
341 views

Creating a Custom NSSlider Based Off of QuickTIme X's Trim UI

I'm working on an application that'll allow a user to select a range of time in a piece of audio for OS X. Most of the searching I've done around getting a UI like the above trimming interface from ...
1
vote
1answer
872 views

change NSSlider Value programmatically

Is there a way to make an IBOutlet of an NSSlider and then be able to change its value programmatically? slider.value = ...does not work. Thanks!
0
votes
1answer
184 views

How can I set a tooltip to display while dragging an NSSlider?

I've got an NSSlider. I've set it to update continuously. In my update code I have: [quality setToolTip:qualityTooltips[pos]]; This updates the tooltip, but the tooltip is not displayed while I'm ...
1
vote
2answers
273 views

Determine when NSSlider knob is 'let go' in continuous mode

I'm using an NSSlider control, and I've configured it to use continuous mode so that I can continually update an NSTextField with the current value of the slider while the user is sliding it around. ...
0
votes
1answer
282 views

Required NSSlider method (sliderDidMove) declaration not found on Apple's Developer Documentation

Working on a tutorial with a NSSlider. What I want: Moving the slider will show slider value in NSTextField. Tutorial explains that following method will show slider value in text field: - ...
0
votes
1answer
86 views

Cocoa: how to reference lots of NSSliders

I have this xib file for my main window, and it contains 64 sliders to be able to create a matrix mix for an audio application. Setting the values using the sliders works, but I also want to save the ...
1
vote
1answer
115 views

Loop for NSSlider

I am instituting a NSSlider into my project that needs to call different methods when moved up or down. So if it is moved up it will do one method, which is a AppleScript, and the opposite if moved in ...
0
votes
1answer
804 views

Controlling master volume on Mac through a Cocoa application

I am looking to incorporate a NSSlider in a Cocoa application that controls the master volume of a Mac. I do not want to do this through AppleScript though, even though I know it is probably easier. ...
2
votes
1answer
528 views

NSSlider animation

How can I create NSSlider animation when changing float value of it. I was trying: [[mySlider animator] setFloatValue:-5]; but that didn't work.. just change the value without animation. So maybe ...
1
vote
1answer
124 views

Using NSLevelIndicators with NSSliders Objective-C

I'm learning Objective-c and made a little practice app to take input from an NSSlider and set the level to it. However, I would like to know if there is any way to make the level indicator update ...
0
votes
1answer
391 views

control NSSlider with arrows on NSMenu for a NSStatusItem- Objective-C/Cocoa

I would like to create a status item with a vertical slider in it, much like the sound control provided by Apple. My question is: how do I make it react to the up/down arrow keys, just like the slider ...
0
votes
1answer
80 views

“Freeze” the slider

Is it possible to "freeze" the slider (NSSlider)? I'd like to make my slider unmovable (with a fixed value) when I press the button "Start", which starts my application... And when I press the button ...
0
votes
2answers
120 views

NSTimer - NSSlider

I have a NSTimer and a NSSlider in my app. How do I make, that the time interval of the timer would respond instantly to the slider value? For now it responds just at the beginning. Once the timer is ...
1
vote
1answer
296 views

Changing the content of a NSTextField via code when it's focused / gets edited by the user

I have a NSSlider which updates the content of an NSTextField. So far so good. It works as long as the NSTextField isn't focused or gets edited by the user (typing or staying blank etc.). What I'm ...
1
vote
0answers
247 views

show a spinner inside NSSlider's knob

I'd like to use NSSlider to control an ext. device. Because the ext. device is slow the slider shall display NSProgressIndicator WITHIN IT'S KNOB until the device achieves the value specified by the ...
0
votes
1answer
489 views

Mac Custom NSSlider how to override tick mark drawing outside slider frame

I'm creating a custom NSSlider where I want to draw labels underneath each of the tick marks. I'm currently doing this in the custom NSSliderCell -(NSRect)rectOfTickMarkAtIndex however because the ...
3
votes
1answer
362 views

OS X Lion scroll direction and NSSlider

My application has horizontal NSSlider acting as volume control and now with Lion's new "natural" (inverted) scroll direction it behaves wrong. When you slide to the left it moves to the right and ...
0
votes
1answer
485 views

mouseDown event on NSSlider

I have hit a bit of a wall and would really appreciate some help. I have an NSSlider that I am using to control the jog speed of a QTMovie. I want the rate of the video to playback according to the ...
3
votes
1answer
2k views

How NSSlider live update value?

It seems like NSSlider in Cocoa does not provide some delegate to received slider event. How NSSlider live update value into NSTextField ?
3
votes
1answer
987 views

Hot to create custom NSSlider like “Start screen saver:” slider in System Preferences

How to create custom NSSlider that is working exactly as slider in System Preferences -> Desktop & Screen Saver -> Screen Saver -> Start screen saver: ? I tried to subclass NSSliderCell with ...
5
votes
1answer
616 views

How can NSSlider be customised to provide a non-linear scale in cocoa?

How can NSSlider be customised to provide a non-linear scale in cocoa? i.e - 0, 2, 4, 6, 10. With the slider constrained to stopping on tick marks only, I want the slider to stop on 0, 2, 4, 6, 10 ...
1
vote
2answers
377 views

Hiding NSSlider's tick marks

Is there a way to hide the tick marks of NSSlider? Thanks
1
vote
1answer
1k views

Draw NSSlider with custom images. Tutorial or guide?

Hi could anyone provide a tutorial or guide on drawing an instance of NSSlider with my own custom images. Thanks, Sami.
0
votes
1answer
1k views

iphone/ipad custom UISlider controller

Here i want to create a custom uislider which is similar to media player forward and backward ie programatically moving slider at a particular time interval. for example consider am having a video ...
1
vote
2answers
915 views

NSSlider NSSliderCell clipping custom knob

I am creating a custom NSSlider with a custom NSSliderCell. All is working beautifully, other than the knob. When I drag it to the max value the knob is being clipped, I can only see 50% of the knob ...
0
votes
3answers
577 views

NSSlider event not firing

I have got an event on my NSSlider with this code: - (IBAction)optOndoorzichtigheidChange:(id)sender { NSUserDefaults* defaults = [NSUserDefaults standardUserDefaults]; NSString *opacity = ...
3
votes
4answers
2k views

custom NSSliderCell

I've sort of accomplised implementing a custom slider cell that can draw over using images for the scroll bar and knob. The only obstacle that is in the way now is this, when I drag the knob quickly, ...
3
votes
4answers
929 views

Subclassing NSSlider: Need a workaround for missing mouse up events (Cocoa OSX)

I am trying to subclass NSSlider to create a control called a jog dial. Basically what I need is a slider which always starts at the middle and when it is moved to the left or right it will send ...
0
votes
2answers
458 views

Sending in values in a NSTextField: objective c

Ok, so I have an NSTextField and an NSSlider. In interface builder, I got the float value from the NSSlider to go into the NSTextField. BUT, I need a button that sends the text from the text field in ...
3
votes
2answers
758 views

Making a circular NSSlide look and behave like in GarageBand

I am new to drawing with Cocoa, and I am making some software which will have sliders similar to these found in GarageBand: These look beautiful and can be controld by moving the mouse up and down. ...