КОД В ПЕРВОМ КАДРЕ НА СЦЕНЕ

Код:
var my_video:Video;
var my_nc:NetConnection = new NetConnection();
my_nc.connect(null);
var my_ns:NetStream = new NetStream(my_nc);
my_video.attachVideo(my_ns);
this.attachAudio(my_ns);
snd = new Sound(this);
snd.setVolume(50);

Код:
onClipEvent (load) {
drag._x = bar._width;
}
onClipEvent (mouseMove) {
persent = drag._x/bar._width;
this.snd.setVolume(persent);
//snd.setVolume(persent);
}
