# Stopping an individual sound

**URL:** https://forum.kirupa.com/t/stopping-an-individual-sound/205999
**Category:** flash
**Created:** [November 3, 2006, 10:48pm UTC](https://forum.kirupa.com/t/stopping-an-individual-sound/205999 "2006-11-03T22:48:25Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![medicineuk](https://avatars.discourse-cdn.com/v4/letter/m/edb3f5/32.png) [@medicineuk](https://forum.kirupa.com/u/medicineuk)
#### Post date: [November 3, 2006, 10:48pm UTC](https://forum.kirupa.com/t/stopping-an-individual-sound/205999/1 "2006-11-03T22:48:25Z")

</div>

Hi Im trying to stop and play an individual sound. with the code below.

Play button has this code

```auto
on (press) {
mySound = new Sound();
mySound.attachSound("rita");
mySound.start(0,1);
}

```

Stop button has this code

```auto
on (release) {
mySound.stop();
}

```

My problem is that when I press the stop button it stops all the sounds that are playing instead of just targeting mySound. Is there away to just stop this one sound without effecting others?
