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.