Importing .swf to sound object
Hi guys,
I was just wondering is it possible to import a .swf file to a Sound Object? I have converted my mp3s to .swf format so that they will work with custom equalizer.
The code i have been trying is:
---------------------------------------
mySound=new Sound();
mySound.loadSound("song.swf");
mySoundVolume = 50;
mySound.setVolume(mySoundVolume);
---------------------------------------
I have also tried loading it as a movie but with no success either:
---------------------------------------
mySound=new Sound();
mySound.loadMovie("song.swf");
mySoundVolume = 50;
mySound.setVolume(mySoundVolume);
---------------------------------------
Any ideas?
Thanks in advance.