# Volume in flash (NOT SLIDER) :)

**URL:** https://forum.kirupa.com/t/volume-in-flash-not-slider/184040
**Category:** flash
**Created:** [April 1, 2006, 8:03am UTC](https://forum.kirupa.com/t/volume-in-flash-not-slider/184040 "2006-04-01T08:03:17Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![JeffSnow](https://avatars.discourse-cdn.com/v4/letter/j/ed8c4c/32.png) [@JeffSnow](https://forum.kirupa.com/u/JeffSnow)
#### Post date: [April 1, 2006, 8:03am UTC](https://forum.kirupa.com/t/volume-in-flash-not-slider/184040/1 "2006-04-01T08:03:17Z")

</div>

I imported some sound files in flash, and can’t seem to mess with the volume of the clips. some are really loud and I want to turn them down a bit. how can I do that?

---

<div class="post-metadata">

### Author: ![phorte](https://avatars.discourse-cdn.com/v4/letter/p/77aa72/32.png) [@phorte](https://forum.kirupa.com/u/phorte)
#### Post date: [April 1, 2006, 8:58am UTC](https://forum.kirupa.com/t/volume-in-flash-not-slider/184040/2 "2006-04-01T08:58:21Z")

</div>

```auto
mySound.setVolume(50);[/AS] where mySound is your sound object, and 50 is a number between 0 and 100, 0 being mute.
```

---

<div class="post-metadata">

### Author: ![JeffSnow](https://avatars.discourse-cdn.com/v4/letter/j/ed8c4c/32.png) [@JeffSnow](https://forum.kirupa.com/u/JeffSnow)
#### Post date: [April 1, 2006, 8:50pm UTC](https://forum.kirupa.com/t/volume-in-flash-not-slider/184040/3 "2006-04-01T20:50:14Z")

</div>

> [@aussie devil](#):
>
> ```
> ActionScript Code:
> [FONT=Courier New][LEFT]mySound.[COLOR=#0000FF]setVolume[/COLOR][COLOR=#000000]([/COLOR][COLOR=#000080]50[/COLOR][COLOR=#000000])[/COLOR];
> 
> ```
> 
> [/LEFT]  
> [/FONT]
> 
> where mySound is your sound object, and 50 is a number between 0 and 100, 0 being mute.

–

Thanks!
