Flash music player
Flash music player
Out of context: Reply #1
- Started
- Last post
- 6 Responses
- ********0
just crate a button that loads ina streaming url using the sound object..
Like:
mySound = new Sound();
then when the button (play) is pressed, load it in like:theurl = sometrack.mp3
mysound.load(theurl, true)
simply do a mysound.stop();
for a stop button, change theurl for whatever track you want, n that..