How can I link external mp3

For the songs section of a band’s website, I am trying to make a list of downloadable songs. I only know how to embed the mp3 into the file, which makesit huge. How do I link to an external mp3, so that it’s only played when the user clicks on the song - and can be downloaded?

[AS]

x = new Sound();
x.loadSound(“mymp3.mp3”,true); //true streams it
x.start();

[/AS]

just make sure mp3 is in same folder as .swf

i missed that last part, just add those actions to a button, if you want the song to be downlaoded just make a link to the file

ya its working

thanks