Hello,
1) As soon as display times out, the active audio player stops.
How to keep it playing?
2) Also, I want to play multiple audio files successively without any gap. I used setTimeout to achieve this, but it introduced some small pause between files, please help:
audioWidget1.play();
var musicTimeout = setTimeout(function(){
audioWidget1.pause();
audioWidget2.play();
setTimeout(function(){
audioWidget2.pause();
audioWidget3.play();
setTimeout(function(){
audioWidget3.pause();
audioWidget4.play();
setTimeout(function(){
audioWidget4.pause();
},time4);
},time3);
},time2);
},time1);