# Controlling sound from FLV

**URL:** https://forum.kirupa.com/t/controlling-sound-from-flv/328142
**Category:** flash
**Created:** [April 22, 2012, 1:15pm UTC](https://forum.kirupa.com/t/controlling-sound-from-flv/328142 "2012-04-22T13:15:14Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![MAGG0T](https://avatars.discourse-cdn.com/v4/letter/m/94ad74/32.png) [@MAGG0T](https://forum.kirupa.com/u/MAGG0T)
#### Post date: [April 22, 2012, 1:15pm UTC](https://forum.kirupa.com/t/controlling-sound-from-flv/328142/1 "2012-04-22T13:15:14Z")

</div>

On so i have my FLV i have managed to set it on a loop so it plays over and over however i want to Mute the sound of the FLV or set the sound to 0.

I tried this on the main timeline  
\_root.flv\_holder.flv\_mc.my\_flv.setVolume(0);  
\_root.flv\_holder.flv\_mc.my\_flv.stopAllSounds();  
It didn’t work so i tried this code on the FLV itself

on (complete){  
this.autoRewind=true;  
this.play();  
this.setVolume(0);  
}

The loop/auto rewind worked perfectly however the sound still played  
and idea’s?  
Thanks in advance.
