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

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......

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:
http://code.google.com/p/chromium/issues/detail?id=42796
http://code.google.com/p/chromium/issues/detail?id=58909
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.

Related

PDF tollbar without download button

Is there a way to have an iFrame with full toolbar except for the download button.
On the web I found this solution
<iframe src="URL#toolbar=0" width="100%" height="100%"></iframe>
But as u know it removes completely the toolbar and I would love to actually keep it.
Basically:
this is how is normally and this is I would love to have it (or something similar).
I already know i cannot prevent ppl to download it in other way, but I'm only interest in this graphic difference
Thanks to anyone who could help me
Also I noticed that mozilla doesnt view iFrame, is there a way to allowed it or something similar?
I need something that ppl can use without changing configuration on their personal mozilla
The look that I'm looking for (asked by my boss) ->
Mozilla browsers have no problem with Iframe, but browsers are configured by users to their security preferences.
<iframe id="page2" height="50%" width="100%"src="http://africau.edu/images/default/sample.pdf#page=2"></iframe>
<iframe id="page1" height="50%" width="100%"src="http://africau.edu/images/default/sample.pdf#page=1"></iframe>
Same as the web page text and images, Audio or Video content, all pdfs are "Download first to view" does not matter if
A=Href
Embed
Iframe
Object (avoid as depreciated)
cUrl (Users direct get)
So why remove the button if its not showing in the frame due to any ad blocker or other user setting such as send downloads into external secured PDF viewer
Mozilla browser with pdf plugin or add-in or PDF extender same as Chrome/Edge
FireFox with a frame blocker active for the same page 3 blocked items.
If you wish to change the Iframe view you need to be the PDF viewer application, but there is no guarantee it is the one the user is viewing within.
Here is a demo of a browser viewer where the download and print buttons are removed. However Browsers need to allow the user to control their own view so I have also opened the download on the right in a companion viewer.
A PDF client cannot view a PDF unless it is Decrypted after a download thus their copy is available for view and edit.

Embedded PDF Issue in Edge Browser

When using the Microsoft Edge browser, by default when you open a PDF it will open the PDF in a new tab using the built-in PDF viewer. To avoid this, you can adjust the browser's settings: Toggle on the "Always open PDF files externally" option. This works great. However, it presents a separate issue. Our internal applications use embedded PDFs in iframes. When the external toggle is set to on, these PDFs will not show in the iframes. This doesn't happen in Chrome. Has anyone else experienced this and know a work around?
I've tried removing the type="application/pdf" from the iframe tag to no avail. I can't find anything else online.
It looks like an expected result because you have enabled the option Always open PDF files externally.
So MS Edge browser is giving you an option to download the PDF file and open it using the desired app.
You said this doesn't happen in Chrome browser.
If you enabled the Download PDF files instead of automatically opening them in Chrome option then you will notice the same result in the Chrome browser.
Output in the Chrome browser:
If you click on the Open button then it will download the PDF file.
I did not get any solution or a workaround for this issue.
If you think that there should be an option to load the file in an iframe if Always open PDF files externally option is enabled then I suggest you click on the Send Feedback button in the MS Edge browser and try to provide your feedback about it to the Microsoft.
I posted feedback suggesting that an exclusion/inclusion list be in included but the simplest way would be to treat the frame as part of the session. But this is not Microsoft it is the Chrome projects issue.

Chrome* api access from my page js

I want to find out if any tab is playing sound on my webpage. Chrome had chrome.tabs api which tells if a tab is playing any sound. How can I access those chrome apis on my page.
You cannot, unless you make an extension to do that for you.

Silverlight Display Mixed Content crashes IE

So, I have an HTML page that includes a Silverlight xap file which plays a video. It works correctly while running locally and on our DEV environment when using Chrome or FF. The issue is when I am trying to view the video on our DEV environment using Internet Explorer. When doing so, it prompts me to Display Mixed Content. Whether I hit Yes or No, the browser crashes. I am able to go into my options and Enable Display Mixed Content, which fixes the issue and the video shows up correctly on the DEV environment using IE. But, this is not a good solution for a client facing site. Is there a way around this message to prevent it from crashing the browser?
A workaround for this is to use JavaScript to open the HTML page that contains the video in a new window. The user will still be prompted to Display Mixed Content, but it will not crash the browser and the video will play.

Flash Player Settings Panel not showing Privacy or Local Storage tabs on Safari for Mac

I'm making a small flash application for a website. It works perfectly apart from one small thing, I have implemented a way to bring up the flash settings menu to a user specified tab.
This works as expected in all cases apart from in Safari on Mac, the Local Storage and Privacy tabs are missing. This is a bit of a problem as the Privacy tab is the most important one in this system.
This only happens when the swf is hosted on a subdomain (for example the swf is hosted on bs5.somewebsite.com and then embedded on somewebsite.com) and I'd write it off as an Apple security quirk however to make matters a bit more frustrating some SWF files from other sources (which I do not have the source code for, JWPlayer for example) can access all tabs in the settings window even on Safari for Mac and even when hosted on the subdomain.
I'm authoring this in FlashDevelop.
This usually happens when you are trying to view your SWF through an iFrame. Safari has a "feature" which disables some functionality for sites loaded in iFrames to try and prevent 3rd parties from tracking you.
A simple test is to directly view the page in the iFrame and see if the Local Storage and Privacy tabs appear.