HI!! I am playing a FLV file in a VideoDisplay called bigVid.
Here is the code. Standard cookbook stuff presentNetCon = new NetConnection(); presentNetCon.connect(null); presentStream = new NetStream(presentNetCon); presentStream.play(videoClip); presentVideo = new Video(); presentVideo.attachNetStream(presentStream); bigVid.addChild(presentVideo); The problem is that no matter what I do I can't change the volume. I have tried to change the NetStream soundTransform volume but no luck. presentStream.soundTransform.volume = 0; I have tried to change the VideoDisplay.soundTransform.volume but no luck. bigVid.soundTransform.volume = 0; I have tried to change the the VideoDisplay.volume but no luck. bigVid.volume = 0; When I play the FLV without adding it as a child to the VideoDisplay , no video but the audio plays fine, I can control the volume, but once I add the Video to the VideoDisplay bigVid.addChild(presentVideo); I can no longer control the audio. Any ideas?? Thanks WAYNEL
