Radio Help anyone?

I use frames for the different pages on my thing, but i can’t put music on it. When i do if i go back to the first section which is home it’ll play the music over. Can anyone help?

I have no idea how you set up your site. I will say that if you’re using flash to kick off your music, you can set a variable and use it as a state. For example, on the frame where you start your music, you can say something like

musicstate=1 // means music has played once

somewhere else you can tell it that

if(musicstate!=1){
gotoandplay(“mymusic”);
}

this will only go and play the music if the music state is one. That way, the music will only play once. I hope that makes sense. Once again, this all depends on how you have your site set up.

Good luck!