显示“缓冲”消息 - Netstream as3
当 netsream 对象下载视频数据时,如何显示缓冲动画?在 Flash 中使用 Actionscript 3.0。
how would I display a buffering animation whilst a netsream object was downloading video data? using Actionscript 3.0 in Flash.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为 NetStatusEvent.NET_STATUS< 添加事件侦听器/a> 到 NetStream 对象,然后使用 event.info 获取实际状态,并对“NetStream.Buffer.Empty”或“NetStream.Buffer.Full”做出反应。
我链接到的文档页面上有一个“如何使用”示例,您可以使用它来开始使用。
Add an event listener for NetStatusEvent.NET_STATUS to the NetStream object, then use event.info to get the actual status, and react to either "NetStream.Buffer.Empty" or "NetStream.Buffer.Full".
There is a "how to use" example on the documentation page I linked to, which you can use to get started.