我有这样的代码:
private var video:Video;
...
private function init():void {
...
nc = new NetConnection();
nc.connect(null);
ns = new NetStream(nc);
ns.play("my flv url");
ns.client = nsClient;
video = new Video();
video.attachNetStream(ns);
videoDisplay.addChild(video);
}
为了能够更改音量,我应该更改或绑定滑块到哪个属性?