如何设置netstream仅加载文件而不播放。只有在我要求时这样做才能玩?
示例代码:
private var nc:NetConnection;
private var ns:NetStream;
// Connections
nc = new NetConnection();
nc.connect(null);
ns = new NetStream(nc);
ns.addEventListener(NetStatusEvent.NET_STATUS, onNetStatus);
ns.client = this;
// Screen
video = new Video();
video.attachNetStream(ns);
addChild(video);
ns.play("file path");
调用ns.play()
时,它会加载并播放视频。我怎样才能让它只准备好视频,只有在我要求它时才能播放?
谢谢。