I have searched but have not been able to find an answer.
I need to provide simple feedback sounds for the user but I don't want to interrupt their audio music playback.
Ideally, it would pause whatever background music is playing, play my beep, then resume playback.
If this is not possible, I would be happy just overlaying my sound over the music.
How do I do this?
1 Answer
Sure, this will play a sound and stop the background song playing from the Music app:
mySound = Ti.Media.createSound({url : 'audio/bell.aiff'}); mySound.play();
Your Answer
Think you can help? Login to answer this question!