I have two videos, and I control them using ns1 and ns2, the NetStream objects. I want to stop the sound of one of them, then turn on the sound of the other. When I use the following two lines, I try to use audio1 and audio2 to start and stop the sounds using setVolume, but it doesn’t work.
this.createEmptyMovieClip("snd1", 0);
snd1.attachAudio(ns1);
audio1 = new Sound(snd1);
this.createEmptyMovieClip("snd2", 0);
snd2.attachAudio(ns2);
audio2 = new Sound(snd2);
Help is greatly appreciated.