Hello and Help!!
I’ve got a problem thats driving me nuts this morning.
Basically I have created a movie which consists of a load of buttons, which when rolledOver play a sound.
The sound is attached using actionscript like so
on (rollOver) {
flowersound = new Sound();
flowersound.attachSound(“3.mp3”);
flowersound.setVolume(70);
flowersound.start(0, 1);
}
3.mp3 has linkage export for actionscript ticked.
Everything works fine when I test the movie, however once I try and load this movie on top of my main interface, all sounds stop
im using this to load the movie
on(press, release){
loadMovieNum(“murakamigiggle.swf”,5);
}
I don’t have any other sounds playing in the lower levels.
:hair: