loadMovie / attachMovie error

Hi All, First post :slight_smile:

I’ve got a swf that sorts out all the sounds for the master movie, this swf is loaded in and works just fine, except none of the actual sounds are attached from the library. Works fine on its own, but as soon as it’s inside another swf the sounds fail to attach. I know that other people have had simialr problems, but as far as I can see I’m not using root anywhere, is it possible to somehow specify which library to attach from?

The code I’m using is below…

//setup all sounds
soundArray = new Array(“arctic_wind”, “cheer”);
//
for (i=0; i<soundArray.length; i++) {
this.createEmptyMovieClip(soundArray*+“Holder”, i+1000);
this[soundArray*+“Sound”] = new Sound();
this[soundArray*+“Sound”].attachSound(soundArray*);
}
stop();
//test - plays fine on it’s own. does not play when loaded into another movie
trace(“sounds created”);
this.arctic_windSound.start();
trace (arctic_windSound.position);

Please help,

Jules