# Sound loading problem

**URL:** https://forum.kirupa.com/t/sound-loading-problem/121921
**Category:** Uncategorized
**Created:** [September 8, 2004, 5:11pm UTC](https://forum.kirupa.com/t/sound-loading-problem/121921 "2004-09-08T17:11:37Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![mprzybylski](https://yyz1.discourse-cdn.com/flex011/user_avatar/forum.kirupa.com/mprzybylski/32/613_2.png) [@mprzybylski](https://forum.kirupa.com/u/mprzybylski)
#### Post date: [September 8, 2004, 5:11pm UTC](https://forum.kirupa.com/t/sound-loading-problem/121921/1 "2004-09-08T17:11:37Z")

</div>

Hello,  
I have a movie that has a sound object in it. I load the sound fine in this movie with the following code:

```auto
var my_sound:Sound = new Sound();
 my_sound.attachSound("mix");
 my_sound.start();

```

then i have play/stop buttons with the following code on them:

```auto
on (release) {
 	my_sound.start();
 }
 
 on (release) {
 	my_sound.stop();
 }

```

all of this actually works, but the problem arises when i load the movie into a loader movie clip of another movie, then nothing works/plays. i tried \_root/\_parent on everything and it didn’t work. any ideas?

any help is greatly appreciated.
