Christopher Tokar
Christopher Tokar

Reputation: 11917

Is there a way to run ActiveX components in Firefox through the use of a plugin?

I have an ActiveX plugin that we need (if possible) to run in Firefox. Is there a plugin (or other way) for Firefox that will allow this?

Upvotes: 6

Views: 11011

Answers (5)

taxilian
taxilian

Reputation: 14324

You could also use firebreath, which allows you to easily create a plugin that will work on both firefox and IE; it's easy to create new methods and properties to be exposed to javascript, but you only do it in one place and it works on both browsers.

http://firebreath.googlecode.com

Yeah, I'm one of the project maintainers, so I'm biased =]

Upvotes: 1

Christopher Tokar
Christopher Tokar

Reputation: 11917

I seem to have found a solution:

http://code.google.com/p/ff-activex-host/

"This Firefox plugin makes it possible to use ActiveX controls in Firefox. It is based on the Gecko NPAPI and provides full access to the hosted control (events, functions, properties)."

Upvotes: 6

gejo
gejo

Reputation:

I found an other ActiveX plug-in that works. It is called neptune. See for more info http://www.meadroid.com/neptune/index.htm

Upvotes: 1

tinyd
tinyd

Reputation: 952

Not sure if this is helpful or not, but writing an NPAPI plugin for Firefox is fairly straightforward IMO - easier than writing an ActiveX control, so you might find it worthwhile to write one, especially as it should work in all the other browsers "for free".

This is a great example of a simple NPAPI plugin.

Upvotes: 2

redsquare
redsquare

Reputation: 78687

You used to be able to in Firefox 1.5 but not any longer I believe, the plugin doesnt seem to be supported anymore.

More info here

Upvotes: 3

Related Questions