aight so I'm loading an MP3 into my Flash movie, but when it plays it's sped up so it sounds like the Chipmunks.. what gives?
http://www.stumpd.com/Music%20Sample.html
any ideas?
this is my code:
---------
music = new Sound();
music.onLoad = function() {
txtLoading._visible = false;
txtSongTitle._visible = true;
music.start()
music.onSoundComplete = function() {
music.start()
}
}
music.loadsound("http://www.dxmgroup.com/accounts/stumpd/media/song.mp3", false);