检查 Flash 中的互联网连接吗?
如何使用 Actionscript 3 检查 Flash 中的活动互联网连接?
How do I check for an active internet connection in Flash using Actionscript 3?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您使用 AIR,则可以使用
ServiceMonitor
类。否则,您可能需要考虑使用
URLLoader
以及具有指数退避的计时器来自行实现。If you are using AIR, you can use the
ServiceMonitor
class.Otherwise you might want to consider rolling your own with a
URLLoader
coupled with a timer with an exponential backoff.要扩展 martineno 关于使用 URLLoader 滚动自己的答案,请阅读 HTTPStatusEvent。
在文档的末尾,Adobe 包含了一个用于检查服务器上文件是否存在的示例,但同样可以应用于简单地检查互联网连接。
to expand on martineno's answer about rolling your own using the URLLoader, read about the HTTPStatusEvent in the documentation.
at the end of the document Adobe includes an example for checking for the existence of a file on a server, but the same could be applied to simply check for an internet connection.