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

时间:2011-09-22 14:56:43

标签: flash actionscript-3 permissions camera microphone

我使用Flash在我的网站上通过麦克风和相机设置请求我的用户,但是没有显示记住复选框,因此每次我的用户登录时他再次请求权限,我如何使复选框显示以避免这种情况?

2 个答案:

答案 0 :(得分:6)

在尝试访问相机之前调用Security.showSettings(SecurityPanel.PRIVACY)

Camera Class LiveDocs

答案 1 :(得分:1)

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

您可以使用&#34;静音&#34;麦克风实例的属性。您无需收听StatusEvent.STATUS。使用上面的代码块,您只能请求一次权限。