# Kirupasound.STOP!;

**URL:** https://forum.kirupa.com/t/kirupasound-stop/89425
**Category:** Uncategorized
**Created:** [May 8, 2005, 7:13am UTC](https://forum.kirupa.com/t/kirupasound-stop/89425 "2005-05-08T07:13:17Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![Photogenius](https://avatars.discourse-cdn.com/v4/letter/p/50afbb/32.png) [@Photogenius](https://forum.kirupa.com/u/Photogenius)
#### Post date: [May 8, 2005, 7:13am UTC](https://forum.kirupa.com/t/kirupasound-stop/89425/1 "2005-05-08T07:13:17Z")

</div>

Im doing the tutorial “playing sounds with actionscript” in the actionscript tutorials section.

My version works fine, but I seem unable to stop the sound.

I have 2 frames, both with “stop();” in the actions of one of the layers.

In the first frame there is the play button, with the actionscript:

```auto
on (release) {
	kirupaSound = new Sound(this);
	kirupaSound.attachSound("coolsound");
	kirupaSound.start(0, 99);
	gotoAndStop(2);
}

```

In the second frame there is a stop button, with the actionscript:

```auto
on(release) {
	kirupaSound.stop;
	gotoAndStop(1);
}

```

But, “KirupaSound.stop;” does not stop the sound. How can I?
