Media Player

I am wanting to make a simple media player to accompany a HTML site I am creating. In particular I am wanting to stream and play external .mp3 files.

so far i have this code; but it doesn’t seem to be working. what else do I need to add so that the .mp3 is played?


this.one_btn.onRelease = function() {
						mySound = new Sound();
						mySound.loadSound("music.mp3",true);
						}

Cheers for the help. :kommie: