# Help Modifying Volume Control Slider Tutorial

**URL:** https://forum.kirupa.com/t/help-modifying-volume-control-slider-tutorial/192621
**Category:** flash
**Created:** [June 29, 2006, 8:26pm UTC](https://forum.kirupa.com/t/help-modifying-volume-control-slider-tutorial/192621 "2006-06-29T20:26:08Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![insultcomidog](https://avatars.discourse-cdn.com/v4/letter/i/ac91a4/32.png) [@insultcomidog](https://forum.kirupa.com/u/insultcomidog)
#### Post date: [June 29, 2006, 8:26pm UTC](https://forum.kirupa.com/t/help-modifying-volume-control-slider-tutorial/192621/1 "2006-06-29T20:26:08Z")

</div>

I’d like to use a slider to control the volume of the background music on my flash site. I would like the background music to stream, so the user does not have to click on a play button to initiate the sound.

This tutorial would work great, if I could customize is for my needs:

[http://www.kirupa.com/developer/mx/volume\_slider.htm](http://www.kirupa.com/developer/mx/volume_slider.htm)

What I change the AS to streaming:

[FONT=Courier New]onClipEvent (load) {[/FONT][SIZE=2][COLOR=#808080]  
[/COLOR][/SIZE][FONT=Courier New][SIZE=2][COLOR=#ff6600] mySound = new Sound();  
mySound.loadSound(“sound2.mp3”, true);[/COLOR][/SIZE][/FONT][SIZE=2][COLOR=#808080]  
[/COLOR][/SIZE][FONT=Courier New][SIZE=2]}[/SIZE][/FONT][SIZE=2][COLOR=#808080]  
[/COLOR][/SIZE][FONT=Courier New][SIZE=2]onClipEvent (enterFrame) {[/SIZE][/FONT][SIZE=2][COLOR=#808080]  
[/COLOR][/SIZE][FONT=Courier New][SIZE=2][COLOR=#336600] downloaded = mySound.getBytesLoaded();  
total = mySound.getBytesTotal();  
if (downloaded != total) {  
\_root.dl = “downloading song…”;  
} else {  
complete = 1;  
\_root.dl = “”;  
}[/COLOR][/SIZE][/FONT][SIZE=2][COLOR=#808080]  
[FONT=Courier New] [/FONT][/COLOR][/SIZE][FONT=Courier New][SIZE=2][COLOR=#0000ff] mySound.setVolume(\_root.volume);[/COLOR][/SIZE][/FONT][SIZE=2][COLOR=#808080]  
[/COLOR][/SIZE][FONT=Courier New][SIZE=2]}[/SIZE][/FONT]  
[FONT=Courier New][/FONT]  
[FONT=Courier New][/FONT]  
[FONT=Courier New]There are two problems…Altough it streams successfully, the mp3 stops looping and you have to drag the slider over the the right to hear it initially…[/FONT]  
[FONT=Courier New][/FONT]  
[FONT=Courier New]Does anyone have some simple mods to this tutorial, to let it control background music? It think it would be a hand tool for alot of ppl.[/FONT]  
[FONT=Courier New][/FONT]  
[FONT=Courier New]Thanks in advance.[/FONT]
