# Setting The Volume!

**URL:** https://forum.kirupa.com/t/setting-the-volume/25925
**Category:** Uncategorized
**Created:** [July 17, 2003, 6:09pm UTC](https://forum.kirupa.com/t/setting-the-volume/25925 "2003-07-17T18:09:13Z")
**Posts on this page:** 6
**Page:** 1

<div class="post-metadata">

### Author: ![balroo](https://avatars.discourse-cdn.com/v4/letter/b/b5e925/32.png) [@balroo](https://forum.kirupa.com/u/balroo)
#### Post date: [July 17, 2003, 6:09pm UTC](https://forum.kirupa.com/t/setting-the-volume/25925/1 "2003-07-17T18:09:13Z")

</div>

hi there,

does anyone around here know how to adjust a sound loop within a movie clip, not the overall sound of the SWF… just the individual movie clip!! 😏

If anyone would tell me i would appreciate it!! :thumb:

thnx in advance!! 🙂

---

<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: [July 17, 2003, 6:11pm UTC](https://forum.kirupa.com/t/setting-the-volume/25925/2 "2003-07-17T18:11:37Z")

</div>

path.to.Mc.\_setVolume(vol amt);

I believe.

---

<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: [July 17, 2003, 6:19pm UTC](https://forum.kirupa.com/t/setting-the-volume/25925/3 "2003-07-17T18:19:34Z")

</div>

what do you mean by path to mc??

do you mean i have to create a movie clip, and within that apply the sound loop?

and where do i put this bit of action script!!

waiting for reply :sure:

---

<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: [July 17, 2003, 6:24pm UTC](https://forum.kirupa.com/t/setting-the-volume/25925/4 "2003-07-17T18:24:06Z")

</div>

> \*Originally posted by balroo \*  
> hi there,

does anyone around here know how to **adjust a sound loop within a movie clip** , not the overall sound of the SWF… just the individual movie clip!! 😏

If anyone would tell me i would appreciate it!! :thumb:

thnx in advance!! 🙂

You did say within the MC correct? When I say path.to.MC, I mean the path to the moveclip of the volume you want adjust. You either need to set instance names for your MC’s or use the already god given instance names.

I hope this helps you somewhat.

---

<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: [July 17, 2003, 7:10pm UTC](https://forum.kirupa.com/t/setting-the-volume/25925/5 "2003-07-17T19:10:52Z")

</div>

[Sound object](http://www.macromedia.com/support/flash/action_scripts/actionscript_dictionary/actionscript_dictionary654.html)

[Sound.setVolume](http://www.macromedia.com/support/flash/action_scripts/actionscript_dictionary/actionscript_dictionary668.html)  
[Sound.getVolume](http://www.macromedia.com/support/flash/action_scripts/actionscript_dictionary/actionscript_dictionary661.html)

Check out those links. =)

---

<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: [July 17, 2003, 8:30pm UTC](https://forum.kirupa.com/t/setting-the-volume/25925/6 "2003-07-17T20:30:32Z")

</div>

onClipEvent (enterFrame) {  
if (i \<= 100) {  
S.setPan(i++);  
}  
}

That could be interesting…
