I need help making an algorithm to detect that all the conditions for HAVE_ENOUGH_DATA are met (and continuously checking until they are met) and I am stumped as to how to calculate all the necessary variables using SoundManager2's whileloading option. I don't need code, just a general algorithm that would work (even pseudo-code is fine).

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

It turns out that setting the whileplaying option is a more optimal and simple solution. This is my whileplaying solution:

function () {
 aSound.options.whileplaying = null;
 if (paused) {
  aSound.stop();
 }
 onCanPlayThrough_callback_here();
}
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.