# How to make music fade out

**URL:** https://forum.kirupa.com/t/how-to-make-music-fade-out/96526
**Category:** Uncategorized
**Created:** [December 10, 2003, 2:47pm UTC](https://forum.kirupa.com/t/how-to-make-music-fade-out/96526 "2003-12-10T14:47:22Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![Mithrandil](https://avatars.discourse-cdn.com/v4/letter/m/f9ae1b/32.png) [@Mithrandil](https://forum.kirupa.com/u/Mithrandil)
#### Post date: [December 10, 2003, 2:47pm UTC](https://forum.kirupa.com/t/how-to-make-music-fade-out/96526/1 "2003-12-10T14:47:22Z")

</div>

i am working on a movie, and i  
have one quick question:

How do i fade the music out. Everytime  
i try to use the fade out effect in movies,  
it doesn’t work!!

plz answer as quickly as possible!!

---

<div class="post-metadata">

### Author: ![system](https://canada1.discourse-cdn.com/flex011/uploads/kirupa/original/3X/6/2/621e5c11736f46532526e61be85940af4230f3e5.png) [@system](https://forum.kirupa.com/u/system)
#### Post date: [December 10, 2003, 3:04pm UTC](https://forum.kirupa.com/t/how-to-make-music-fade-out/96526/2 "2003-12-10T15:04:47Z")

</div>

Are you using “Start” as Sync in the sound properties?

---

<div class="post-metadata">

### Author: ![system](https://canada1.discourse-cdn.com/flex011/uploads/kirupa/original/3X/6/2/621e5c11736f46532526e61be85940af4230f3e5.png) [@system](https://forum.kirupa.com/u/system)
#### Post date: [December 10, 2003, 3:06pm UTC](https://forum.kirupa.com/t/how-to-make-music-fade-out/96526/3 "2003-12-10T15:06:45Z")

</div>

It’s easy. Let’s say you have a movieclip named mc1 and when you click it the sound fades out. The sounds name is sound1.  
[AS]  
//This is what you write in the main frame  
mc1.onRelease = function() {  
mc1\_rel=true;  
}

\_root.onEnterFrame = function() {  
if (mc1\_rel) {  
if (sound1.volume\>0) {  
sound1.volume-=1;  
} else {  
mc1\_rel=false;  
}  
}  
}  
[/AS]

---

<div class="post-metadata">

### Author: ![system](https://canada1.discourse-cdn.com/flex011/uploads/kirupa/original/3X/6/2/621e5c11736f46532526e61be85940af4230f3e5.png) [@system](https://forum.kirupa.com/u/system)
#### Post date: [December 10, 2003, 3:11pm UTC](https://forum.kirupa.com/t/how-to-make-music-fade-out/96526/4 "2003-12-10T15:11:04Z")

</div>

Thanks. That helped
