Re: NSSlider: How to set a parameter value?
Re: NSSlider: How to set a parameter value?
- Subject: Re: NSSlider: How to set a parameter value?
- From: Graham Cox <email@hidden>
- Date: Tue, 30 Dec 2008 01:00:28 +1100
On 30 Dec 2008, at 12:55 am, Marcelo Cicconet wrote:
But how can I move the playback position to another point of the sound
via a slider?
In your controller object, implement an action method like:
- (IBAction) soundTimeAction:(id) sender
{
[mySound setCurrentTime:[sender floatValue] * [mySound duration]];
}
then wire this up as the slider's action using IB.
hth,
Graham
_______________________________________________
Cocoa-dev mailing list (email@hidden)
Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden