I have a fresh 2017.0.81.0 package and I run TabbedBrowser sample to load web page with some JS running in background. One of the JS checks is failing, because the code cannot find any plugin with name "Adobe PDF Plug-in" or "Adobe Acrobat". I had a simple test to show all loaded plugins:
Code: HTML/ASPX
<html>
<body>
<div id="example"></div>
<script type="text/javascript">
var x=navigator.plugins.length;
var txt="Total plugin installed: "+x+"<br/><br/>";
txt+="Available plugins are:"+"<br/>";
for(var i=0;i<x;i++)
{
txt+=navigator.plugins[i].name + "
script>
</body>
</html>
This is output:
Code: HTML/ASPX
Total plugin installed: 2
Available plugins are:
Chrome PDF Viewer
Chrome PDF Viewer
I have Acrobat Reader DC installed in default location. This is what I tried:
- copy npppdf32.dll into the folder with EO.WebBrowser.dll
- I've tried to add Adobe Reader folder into the AdditionalPluginsDirs
- run ProcessMonitor and do not see any file operations in Adobe folder
Nothing from above changed the behabiour.
The 2015 version works fine fine and displays 5 plugins, including Adobe Acrobat.