Hey Everyone!,
I have a site I’m building that imports an MP3 from an external file and plays.
var my_sound:Sound = new Sound();
my_sound.loadSound(“audio/Music.mp3”, true);
I’d like to be able to fade the mp3 out and fade in on a button release. The issue I’m running into however is that the site has video content with sound. I’d like to be able to fade ONLY the MP3 not ALL of the sound. Is this possible? Or does the MP3 have to be embedded into the swf file?
Thanks
PDidee