Hiya!
I’m having this really annoying problem: I load a media player into my main swf, which works. The only problem is that if someoen for some reason decides that he/she doesnt want to listen to the music, and then later on wanna listen again, that wont work, the play button doesnt work.
On the **frame **that the music is supposed to be played on i have this code:
mySound = new Sound();
mySound.attachSound(“snd1”);
mySound.start();
and on the **stop **button i have this code:
on (release) {
mySound.stop();
}
and on the **start **button i have this code:
on (release) {
mySound.start();
}
why isnt the play button working when i load the music swf with the code above into my main flahs file?