# Navigation and Sound Help Needed

**URL:** https://forum.kirupa.com/t/navigation-and-sound-help-needed/198008
**Category:** flash
**Created:** [August 21, 2006, 6:45pm UTC](https://forum.kirupa.com/t/navigation-and-sound-help-needed/198008 "2006-08-21T18:45:31Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![jflint](https://yyz1.discourse-cdn.com/flex011/user_avatar/forum.kirupa.com/jflint/32/2115_2.png) [@jflint](https://forum.kirupa.com/u/jflint)
#### Post date: [August 21, 2006, 6:45pm UTC](https://forum.kirupa.com/t/navigation-and-sound-help-needed/198008/1 "2006-08-21T18:45:31Z")

</div>

Ok, here is what I have. I have a scene with multiple stops (call it 5 for this example). Each stop has a voice over bit that plays. I have a pause and play button that pauses and plays the animation and the sound. I have Next and Previous buttons that let the user move to the different stops.

The pause and play is working great by itself. The next and previous buttons were working great before I added the sound.

Now, when I hit “next” for instance, and go to the next stop, the current sound playing stops and the next bit of VO plays just like it is supposed to. However, if i try to go back, the sound just stops all togoether.

Here is the AS that I have on the start of each section of the scene:

```auto

mySoundPosition=_root.compassSound3.position;
_root.compassSound3.start(mySoundPosition,0);
_root.compassSound3.onSoundComplete = function(){
    _root.compassSound3.stop();
     gotoAndPlay("next")
    };

```

Here is the AS on the Next button:

```auto

on (press) {
    _root.compassSound3.stop();
    gotoAndPlay("traditional");
}

```

Here is the AS I have on the Previous button in the next section:

```auto
on (press) {
    _root.compassSound4.stop();
    gotoAndPlay("start");
}

```
