Flash - 提示用户记住相机和麦克风设置
我使用 Flash 向我的网站上的麦克风和摄像头设置请求用户,但记住复选框未显示,因此每次我的用户登录时都会再次请求权限,如何使该复选框显示以避免这种情况?
I request my user from mic and camera setting on my website with Flash, but the remember checkbox does not show, so every time my user logs in he's requested once again for permissions, how can I make the checkbox show to avoid this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在尝试访问摄像头之前调用
Security.showSettings(SecurityPanel.PRIVACY)
。相机类 LiveDocs
Call
Security.showSettings(SecurityPanel.PRIVACY)
before trying to access the camera.Camera Class LiveDocs
您可以使用麦克风实例的“静音”属性。您不需要监听
StatusEvent.STATUS
。使用上面的代码块,您只能请求一次许可。You can use "muted" property of the microphone instance. You do not need to listen the
StatusEvent.STATUS
. With the code block above, you can ask for permission only once.