Flash - 提示用户记住相机和麦克风设置

发布于 2024-12-06 03:35:11 字数 85 浏览 0 评论 0原文

我使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

甜`诱少女 2024-12-13 03:35:11

在尝试访问摄像头之前调用 Security.showSettings(SecurityPanel.PRIVACY)

相机类 LiveDocs

Call Security.showSettings(SecurityPanel.PRIVACY) before trying to access the camera.

Camera Class LiveDocs

不再见 2024-12-13 03:35:11
var _mic:Microphone;
_mic = Microphone.getMicrophone(<index>);
if(_mic.muted){
    Security.showSettings(SecurityPanel.PRIVACY);
}

您可以使用麦克风实例的“静音”属性。您不需要监听StatusEvent.STATUS。使用上面的代码块,您只能请求一次许可。

var _mic:Microphone;
_mic = Microphone.getMicrophone(<index>);
if(_mic.muted){
    Security.showSettings(SecurityPanel.PRIVACY);
}

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文