function doclick(){  
    soundManager.createSound({
        id: 'mySound',
        url: 'http://localhost/htmlshooter/wav/gun.wav',
        autoLoad: true,
        autoPlay: true,
        volume: 100
    });

    mySound.play();
}

First it says:

SMSound._onload(): "mySound" failed to load? - http://localhost/htmlshooter/wav/gun.wav SMSound.play(): "mySound" is starting to play SMSound.play(): "mySound" is loading - attempting to play..

And then:

soundManager.createSound(): mySound exists soundManager.createSound(): mySound (http://localhost/htmlshooter/wav/gun.wav)

But in fact, its not playing any sound at all.

link|improve this question

Does the sound file you specified exist at that location? The first error message said it failed to load. Can you play it in your browser (the same URL)? – pavium Apr 25 '11 at 9:44
@pavium yes, its localhost/htmlshooter/wav/gun.wav – Thew Apr 25 '11 at 9:54
Well, I could see that from the question ... if you can play it by typing the URL in the browser we can discount my first thought - that the error message said the file doesn't exist. – pavium Apr 25 '11 at 10:04
feedback

1 Answer

up vote 3 down vote accepted

I dont think Soundmanager2 plays Wav files. You could try enabling HTML5 support on SM2 maybe?

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.