user953961
user953961

Reputation: 11

can't click allow button flash microphone access in chrome extentions

I have a chrome extentions to record and upload sound. I embedding some flash content in an iframe to that extention. The flash part is requesting access to the allow the michrophone first. If I open in browser firefox and chrome, it's work proferly. But if open in chrome extentions, allow button is disabled or can't be clicked.

are there any way to fix this? Thanks......

Upvotes: 1

Views: 876

Answers (1)

Boris Smus
Boris Smus

Reputation: 8472

There are security restrictions embedding flash inside a chrome-extension:// URL, which behaves much like a sandboxed file:// environment. Perhaps you're running into one.

Here are some bug links for you:

A potential workaround is to have an iframe point to an HTTP url with the flash content. You can also make an exception in the flash control panel, but that's per machine and probably not what you want.

Upvotes: 1

Related Questions