I have a movie "mixer.swf". In the movie I have a MC 'volume' that (onClipEvent(load)) attaches a linked sound 'sound1'.

... so far so good

Then I load 'sound2.swf' that hold a linked 'sound2' into _level2.

On a button I wish to attach 'sound2' to the mc 'volume' but I can't seem to get it right!

onClipEvent (mouseDown) {
volume.objSound = new Sound("sound1");
volume.objSound.setVolume(100);
volume.objSound.attachSound("_level2.sound2");
volume.objSound.start(0, 1);
}

What am I doing wrong ... ?
Help will be greatly appreciated
/POD