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 (Cocoa-dev@lists.apple.com)

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:
http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com

Reply via email to