How Do I Load Lots Of Sounds

I Need Help With My App.

I Have My App Set up And It Works Fine. That Is Only On Pc In The Simulator.

The Way I Have My Sounds Loaded Is Probably Wrong Because When I Download The App To My Phone And Open It Only The First 2 Buttons Work.

-----I Used To Have My code like this
 

local soundone = audio.loadSound( "Sound1.mp3" ) local soundtwo = audio.loadSound( "Sound2.mp3" ) local soundThree = audio.loadSound( "Sound3.mp3" ) local soundFour = audio.loadSound( "Sound4.mp3" ) -----I Am Still having this problem 

-----And It Gave me the problem im describing.

-----Only “soundone” and “soundtwo” were working when I did audio play on separate buttons.
-----the other ones didn’t work so I changed my loading sequence to sound table shown below.

-----Now I have it like
 

soundTabel = { soundone = audio.loadSound( "Sound1.mp3" ) soundtwo = audio.loadSound( "Sound2.mp3" ) soundThree = audio.loadSound( "Sound3.mp3" ) soundFour = audio.loadSound( "Sound4.mp3" ) }

And the problem Still Keeps going

i Don’t Know How To Fix This Issue

Any Help Would Be Great…

It would help if you showed the code that actually played the sound.

Other than that, my first guess is that the filenames aren’t the same. For example, in your code you have Sound3.mp3 but maybe on your hard drive it’s sound3.mp3 (lowercase s)? Double check that because I’ve seen it bite many people (myself included).

 Jay

It would help if you showed the code that actually played the sound.

Other than that, my first guess is that the filenames aren’t the same. For example, in your code you have Sound3.mp3 but maybe on your hard drive it’s sound3.mp3 (lowercase s)? Double check that because I’ve seen it bite many people (myself included).

 Jay