Advertise Mobile SDKs Books Events Forum News Social Networking Support Us
Follow @iphonedevsdk on Twitter

Interface 2, Advanced iOS
Mockup & Code Gen
($9.99)

Make your own iPhone apps
and run them live!
(free)

Pic Frame Dynamo: Photo Editing
($0.99)

Abiliator
($1.99)

Want your application or service advertised on iPhone Dev SDK?

Go Back   iPhone Dev SDK Forum

View Single Post
Old 10-10-2009, 01:32 AM   #4 (permalink)
bobbypage
David Porter Apps
 
bobbypage's Avatar
 
Join Date: Aug 2009
Posts: 71
bobbypage is on a distinguished road
Default

Quote:
Originally Posted by tackey123 View Post
Does anyone know how to write code that would do this:

I have about 12 short audio files (mpegs).

I want to hit a "PLAY" button and have one of those audio files chosen at random to play. It would loop twice and then on the third loop it should crossfade into another randomly chosen piece of audio.

That's it. No stop or pause buttons. Just PLAY and the audio files are chosen to randomly play, crossfading into each other.
I would use rand() look at my code below on how to do it... hope I help

Code:
-(IBAction)pushrandomsound {
	int rNumber = rand() % 5; //put how many cases you have here
	
	switch (rNumber) {
		case 0:
			//insert code to play sound 1 here
			break;
case 1:
			//insert code to play sound 2 here
			break;
case 2:
			//insert code to play sound 3 here
			break;
case 3:
			//insert code to play sound 4 here
			break;
case 4:
			//insert code to play sound 5 here
			break;
default:
break;
      }
}
bobbypage is offline   Reply With Quote
 

» Advertisements
» Stats
Members: 175,282
Threads: 93,959
Posts: 402,306
Top Poster: BrianSlick (7,971)
Welcome to our newest member, kurtwatson
Powered by vBadvanced CMPS v3.1.0

All times are GMT -5. The time now is 09:10 AM.
Powered by vBulletin® Version 3.8.0
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.