I want to have an equivalent of NPAPI plugin for Firefox (or just any other sane browser). Generally I need IE to start my own program in response to object tag and let it draw the content itself.

Where do I start?

I tried to look it up on MSDN

http://msdn.microsoft.com/en-us/library/aa902517.aspx

but could not find anything suitable.

link|improve this question

60% accept rate
feedback

1 Answer

up vote 2 down vote accepted

The equivalent plugin mechanism for IE is an ActiveX content extension. This is cumbersome to do by hand, so do it using support from MFC or ATL.

Here are two tutorials that turned up on a web search (there are many more out there):

If you need to support both NPAPI and ActiveX, take a look at our FireBreath framework. Its goal is to write the plugin only once and let the framework take care of ActiveX and NPAPI support.
At the very least you could use the sources as a reference if needed - use src/ActiveXPlugin and specifically FBControl and JSAPI_IDispatchEx as a starting point.

link|improve this answer
Looks good. Thanks! – stach Jul 12 '10 at 21:10
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.