npapi

Silverlight on Mac beyond 2016: Is Out Of Browser (OOB) an option?

坚强是说给别人听的谎言 提交于 2019-12-04 18:47:00
问题 The Get Silverlight page now shows Dec 31 2016 as the end of support for Silverlight in Safari. That seems to be unannounced news and it is unclear if it was set by Apple or Microsoft. The date matches the Firefox end of support for NPAPI. Q1: Could a Silverlight app continue to be viable (and installable) as an OOB app on the Mac beyond that? Or does the inevitable loss of broswer NPAPI support mean the complete end-of-the-line for Silverlight on Macs? The post here seems to offer some hope,

How to convert ActiveX control to NPAPI plugin

放肆的年华 提交于 2019-12-04 17:11:50
I have an ActiveX control which is designed to * Search for nearby wireless networks * Create a wireless access point * Manage network adapters I would like this plugin to work in Google Chrome/Firefox. In IE; I can use the following code to embed: <object classid="clsid:33FC4347-8118-4DB5-BFBE-8FCF2C96A997" width="32" height="32" id="thectrl"></object> and I create a wireless network as follows (in JavaScript): thectrl.createNetwork("test",0,null,"NONE",3); The ActiveX has an IDL file, and outputs to OCX format. How do I turn this into a plugin for Google Chrome/Firefox? If you want to

NPAPI Plugin not loaded on chrome

柔情痞子 提交于 2019-12-04 02:03:37
问题 I have a npapi plugin composed of a dll and manifest.json file. This npapi dll is detected as plugin on chrome ie it is listed on about:plugins page. However, when I invoke this plugin in sample html page using tag, it says 'Plugin failed to load'. Any ideas why this plugin fails to load in chrome. Thanks 回答1: With the information you have provided it is impossible to say for sure, but I would guess it is one of two things: Your plugin may have an external dependency that isn't being found.

Silverlight on Mac beyond 2016: Is Out Of Browser (OOB) an option?

孤街醉人 提交于 2019-12-03 11:58:59
The Get Silverlight page now shows Dec 31 2016 as the end of support for Silverlight in Safari. That seems to be unannounced news and it is unclear if it was set by Apple or Microsoft. The date matches the Firefox end of support for NPAPI . Q1: Could a Silverlight app continue to be viable (and installable) as an OOB app on the Mac beyond that? Or does the inevitable loss of broswer NPAPI support mean the complete end-of-the-line for Silverlight on Macs? The post here seems to offer some hope, but it is quite old. Q2: Can anyone point to a source/announcement of that Safari end of support date

How to stream RTSP live video in Firefox and Chrome now that the VLC plugin is not supported anymore?

时间秒杀一切 提交于 2019-12-03 06:19:11
Now that the NPAPI that the VLC plugin uses is being discontinued in Firefox and that Google Chrome has discontinued the NPAPI for long is there any solution to stream RTSP live video inside these browsers? Thanks a lot for your help on this. Regards, Tiago Dias After a long time digging and following this topic I have came to interesting results. At this point the best option seems to be an RTSP proxy that changes RTSP in a way that makes it compatible with something supported by web browsers (WebRTC, etc.). I have collected the following solutions: https://github.com/Streamedian/html5_rtsp

How to embed Delphi VCL form into HTML page using NPAPI?

戏子无情 提交于 2019-12-02 23:24:06
问题 There are known ways of writing ActiveX plugins with Delphi, but the ActiveX itself poses a lot of limitations in browsers other than IE. So I was thinking - how to compile a plugin in NPAPI format, natively compatible with Chrome/Firefox? Intent of the plugin is to allow to embed a VCL form into the HTML page and be able to bi-directionaly communicate with this form using JavaScript. E.g. clicking a button on a form would call JavaScript function on the page, and JavaScript functions on the

How to callback plugin thread on Safari 5.1 on OSX?

人走茶凉 提交于 2019-12-02 17:53:28
问题 The Gecko functions NPN_PluginThreadAsyncCall / pluginthreadasynccall are not working for me on Safari 5.1 (Firefox works) - my function does not get called. I'm trying to make a function call back to JavaScript after performing a long-running task on another thread. How can I make this work? 回答1: Yeah, we had the same problem with Safari 5.1 in FireBreath (which you should definitely look at if you're not familiar with it); NPN_PluginThreadAsyncCall no longer works. You haven't specified

Unable to pass integer from javascript to npapi plugin

雨燕双飞 提交于 2019-12-02 12:31:10
问题 I am writing a simple napapi plugin where I have to print the value passed from javascript function in html page. But I am facing problem while doing it. It works properly on firefox. But I want to do it on qt fancybrowser example. The value printed is always 0 no matter whatever value I pass in javascript code. The javascript code is as follows : <html> ..... <script> function process_data() { PluginObject = document.getElementById("Object"); var i =100; if(PluginObject){ ret = PluginObject

How to embed Delphi VCL form into HTML page using NPAPI?

∥☆過路亽.° 提交于 2019-12-02 11:18:14
There are known ways of writing ActiveX plugins with Delphi, but the ActiveX itself poses a lot of limitations in browsers other than IE. So I was thinking - how to compile a plugin in NPAPI format, natively compatible with Chrome/Firefox? Intent of the plugin is to allow to embed a VCL form into the HTML page and be able to bi-directionaly communicate with this form using JavaScript. E.g. clicking a button on a form would call JavaScript function on the page, and JavaScript functions on the page could send events to a VCL form. How this can be achieved? There's a list of existing NPAPI

How to callback plugin thread on Safari 5.1 on OSX?

本秂侑毒 提交于 2019-12-02 07:51:27
The Gecko functions NPN_PluginThreadAsyncCall / pluginthreadasynccall are not working for me on Safari 5.1 (Firefox works) - my function does not get called. I'm trying to make a function call back to JavaScript after performing a long-running task on another thread. How can I make this work? Yeah, we had the same problem with Safari 5.1 in FireBreath (which you should definitely look at if you're not familiar with it); NPN_PluginThreadAsyncCall no longer works. You haven't specified which platform you're on, so I'll show you what we use on both Mac and Windows. On windows, we create a message