Help me to use Sound!

edited January 2013 in Support
Hi Selim.
I'm trying to use sound, but nothing works.
I added






Trying to create the sound: var music = new $.gameQuery.SoundWrapper(true, "sound1.mp3");

I get this error:
soundManager.createSound(): Unavailable - wait until onready() has fired. soundmanager2.js:4105
SoundManager V2.97a.20130101 (AS2/Flash 8) + HTML5 audio + preferFlash soundmanager2.js:1140
SoundManager 2 HTML5 support: mp3 = true (preferring flash), mp4 = true (preferring flash), ogg = true, wav = true soundmanager2.js:1140
SoundManager 2 loaded (OK)

1. What is wrong and how can I to fix this?

BTW,
2. I want to use a sound in a loop, is this possible?
3. Also, I need to change the transpose of the sound according with engine speed, is this possible? If not, how can I develop this effect ??
4. Is it possible to use SM2 without .swf? If no, will it work on mobile devices?

Thanks a lot!!!

Comments

  • I added the files:
    !--script type="text/javascript" src="jquery-1.8.1.min.js">/script
    !--script type="text/javascript" src="soundmanager2.js"></script
  • Hi ,

    Did you do the sound creation in
    $(function(){})
    ?

    As for you questions:
    2. Loop should be possible
    3. Changing the speed is not supported by SoundManager as fas as I know
    4. I don't know if SM2 works without flash.

    For what you want to do I would use the WebAudio API directly (you don't need to go through gQ anyway, they will play well together). It will work on modern mobile browser and allow you to manipulate the sound like you want.

    Cheers!
  • Thanks for your answer.
    I should to make an engine sound. I think to use one sound which is ascending. And for each car I will make associations between engine speed (rpm) and a place in the sound (time). In the main game loop I try to set the currentTime to the time, which is associated with current gear speed (rpm). How do you think, will this work? Anyway, the "this.sound.currentTime=2" doesn't work for me... :(
Sign In or Register to comment.