Skip to main content
Known Participant
August 28, 2006
Question

LoadSound issue with Standalone player

  • August 28, 2006
  • 1 reply
  • 174 views
I have a set of mp3 sounds that are in the same folder as my fla and swf files, but when I export a projector (.exe) file, the sounds do not play. I have one or two sounds that are embedded in the flash, and those ones work just fine, but for some reason, the sounds that actionscript loads using Sound.loadSound() don't work.

Why is this?
This topic has been closed for replies.

1 reply

Inspiring
August 29, 2006
Whats the path you have used ?


--
Regards
FlashJester Support Team
e. - support@flashjester.com
w. - http://www.flashjester.com

There is a very fine line between "hobby" and
"mental illness."


CogDevAuthor
Known Participant
August 29, 2006
My .mp3 files are in the same folder as the projector file, so I am not including a path, just the filename.

The command that loads the sound looks like:

currentSound.loadSound("sound.mp3");

currentSound.onLoad = function( success:Boolean):Void{
currentSound.start(0,0);
}