# setVolume Issues

**URL:** https://forum.kirupa.com/t/setvolume-issues/156411
**Category:** flash
**Created:** [July 25, 2005, 6:17pm UTC](https://forum.kirupa.com/t/setvolume-issues/156411 "2005-07-25T18:17:38Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![absentminded](https://yyz1.discourse-cdn.com/flex011/user_avatar/forum.kirupa.com/absentminded/32/1305_2.png) [@absentminded](https://forum.kirupa.com/u/absentminded)
#### Post date: [July 25, 2005, 6:17pm UTC](https://forum.kirupa.com/t/setvolume-issues/156411/1 "2005-07-25T18:17:38Z")

</div>

Ok, so adding some sound to the web site, all is nice and good - I can get it to play just fine. Now the primary background sound I want to be a very low volume, so you can hear the various button effects that are all working already as well.

I am using the setVolume command to just set the BG volume to a low level, lets say 15, as seen below, strange part is, it has NO effect and the volume just plays at the normal clip levels.

Suggestions? Code:

```auto
// BG Sound Controller
	var bgSound:Sound = new Sound();
	bgSound.attachSound("mainSound");
	bgSound.start(0)
	bgSound.setVolume(15);

```
