Flash Player 7。
注意:当与 Flash Communication Server 一起使用时,Flash Player 6 也支持此方法。有关更多信息,请参见 Flash Communication Server 文档。
my_ns
.close()
无。
无。
方法;停止播放流上的所有数据,将 NetStream.time
属性设置为 0,使该流可用于其它用途。此命令还删除已使用 HTTP 下载的 FLV 文件的本地副本。
以下 onDisconnect()
函数关闭一个连接并删除已存储在本地磁盘上的 someFile.flv 的临时
副本。
my_nc = new NetConnection(); my_nc.connect(null); my_ns = new NetStream(my_nc); my_ns.play("http://www.someDomain.com/videos/someFile.flv"); function onDisconnect() { my_ns.close(); }
NetStream.pause()
、NetStream.play()