Is it possible in actionscript 3.0 to play chain of sounds (i.e. several mp3s)? Or should I manually start playing first sound, wait for SOUND_COMPLETE event, then start second sound and so on?

link|improve this question

72% accept rate
feedback

1 Answer

up vote 1 down vote accepted

You'd need to use SOUND_COMPLETE, but you should be aware that Flash has some latency issues when it comes to playing sounds. Additionally, if you're using mp3s you have to remember that the mp3 file format itself has some blank space at the head of the file such that a continuous loop is not possible without using the 10.0+ Sound APIs to extract only the part of the file that contains actual sound.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.