Hi all!

I have created a website which has 2 swf files, both of which are preloaded. After both swf have preloaded and started playing I am then trying to use loadmovie to load a seperate swf which simply plays a 30 second sound loop.

When I test the single movie (the one with the sound) it loops perfectly. When this same clip plays from the main swf movie the sound only plays once. Any idea where I'm going wrong??

BTW here's the script from my sound loop clip:

music1 = new Sound();
music1.attachSound("music");
music1.start(0, 100000);
_root.volume = 100;
stop ();

Thanks in advance,
Gareth