# Controlling sound

**URL:** https://forum.kirupa.com/t/controlling-sound/84982
**Category:** flash
**Created:** [April 1, 2005, 12:12am UTC](https://forum.kirupa.com/t/controlling-sound/84982 "2005-04-01T00:12:41Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![conradical](https://yyz1.discourse-cdn.com/flex011/user_avatar/forum.kirupa.com/conradical/32/786_2.png) [@conradical](https://forum.kirupa.com/u/conradical)
#### Post date: [April 1, 2005, 12:12am UTC](https://forum.kirupa.com/t/controlling-sound/84982/1 "2005-04-01T00:12:41Z")

</div>

Hey guys, I got this project that i need to finish and the sound part is the last…help me get paid!😏

Ok, I got a main movie with a background sound (as a movie clip) and an empty movie clip (‘contents’) to load external Fla’s. The main movie has links to three other movies A, B and C.

As i navigate between the various external fla’s the bg sound should keep looping. When Movie A loads, it has it’s own sound and it plays, when I navigate away from Movie A and load Movie B, the sound for Movie A still plays, how do I get to stop the sound of only the loaded movies and not the background sound?

Does that sound confusing? Below is some code I used on the buttons to load the external fla’s

on (release) {

```
    contents.stop(); // Doesn't stop the sound in 'contents'

```

\_root.contents.loadMovie(“audio.swf”);  
}
