# Stop buttons not appearing

**URL:** https://forum.kirupa.com/t/stop-buttons-not-appearing/324792
**Category:** flash
**Created:** [September 9, 2011, 6:43am UTC](https://forum.kirupa.com/t/stop-buttons-not-appearing/324792 "2011-09-09T06:43:27Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![BLKelsey](https://avatars.discourse-cdn.com/v4/letter/b/f17d59/32.png) [@BLKelsey](https://forum.kirupa.com/u/BLKelsey)
#### Post date: [September 9, 2011, 6:43am UTC](https://forum.kirupa.com/t/stop-buttons-not-appearing/324792/1 "2011-09-09T06:43:27Z")

</div>

Hey all,

I’m working on an external mp3 jukebox for an Interactive Design course and I’ve almost got it. However, none of my ‘stop’ buttons appear to stop the song. I have 3 songs, so I have 3 sets of ‘play’ buttons and _should_ have 3 sets of ‘stop’ buttons. The way I have it set up is the ‘stop’ button is onion-skinned behind the ‘play’ buttons, so once the user presses a play button, the stop button should appear…but, it does not.

I’m stumped because the play buttons appear to work. It’s just the stop buttons do not appear after the play button is selected. Here is what I have in the first frame of the actions layer.

```auto

stop ();

play_btn1.onRelease = function ()
{
    stopAllSounds ();
    song1 = new Sound ();
    gotoAndStop ("Eagles");
    song1.loadSound ("Desperado.mp3",true);
};

stop_btn_1.onRelease = function ()
{
    stopAllSounds ();
};

play_btn2.onRelease = function ()
{
    stopAllSounds ();
    song2 = new Sound ();
    song2.loadSound ("Rocket Man.mp3",true);
};

Any help, direction, or advice would really be appreciated to get me back on track.

stop_btn_2.onRelease = function ()
{
    stopAllSounds ();
};

play_btn3.onRelease = function ()
{
    stopAllSounds ();
    song3 = new Sound ();
    gotoAndStop ("CSN");
    song3.loadSound ("Southern Cross.mp3",true);
};

stop_btn_3.onRelease = function ()
{
    stopAllSounds ();
};

```

Other layers I have:

Jukebox  
Buttons - play1, stop1, play2, stop2, play3, stop3 (labeled as such)  
AlbumCover - Eagles, Elton John, Crosby Stills & Nash (labeled)  
Labels - Play, Stop  
Actions

Any help, direction, or tips anybody can give me would surely be appreciated.

Thanks guys!
