Revision: 7395
Updated Code
at July 21, 2008 20:34 by zeman
Updated Code
var st:SoundTransform = new SoundTransform();
st.volume = 1;
stream.soundTransform = st;
function mute(e:MouseEvent):void {
st.volume = 0;
stream.soundTransform = st; // must reconnect after each volume change
}
Revision: 7394
Initial Code
Initial URL
Initial Description
Initial Title
Initial Tags
Initial Language
at July 21, 2008 20:33 by zeman
Initial Code
var st:SoundTransform = new SoundTransform();
st.volume = 1;
stream.soundTransform = st;
function mute(e:MouseEvent):void {
st.volume = 0;
stream.soundTransform = st; // must reconnect after each volume change
}
Initial URL
Initial Description
Initial Title
Adjust Volume on FLV Video
Initial Tags
textmate, video
Initial Language
ActionScript 3