Sound Playing / Load Movie Question

Hi,

I created a simple sound player as .fla called Music.swf

In the library I had my track I wanted to play - had named the linkage of it “track”, & added start and stop buttons. The code was similar to this:


song = new Sound();
song.attachSound("track");
song.start();

And the buttons were basically just song.stop() and song.start().

Now when I published it worked fine, the music stopped and started as I wished with no problems.

However I then tried to load this movie (Music.swf) into another .swf both on a dif layer and into a movie clip the music didn’t play either time, nor did the buttons work.

Why is this?

PS. (I found away round this problem, but I would like to know anyway :rambo: )