I am loading MP3's into a sound object, and the sounds play full volume without me touching anything. However if i then set the volume of the Sound object to 100, the sound plays at what seems to be about 50%, and following this trend passing in 200 seems to get back up to 100%.

soundPlayer.loadSound("my.mp3");
//plays at 100%


soundPlayer.loadSound("my.mp3");
soundPlayer.setVolume(100)
//plays at ~ 50%

soundPlayer.loadSound("my.mp3");
soundPlayer.setVolume(200)
//plays at 100%

Has anyone run into this?

-Mike
_______________________________________________
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com

Reply via email to