The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
20 views

How can I hide the control bar of the “Windows Media Player” for Chrome and FF?

I want to play a WMV video in an HTML file. The video should have no control panel (play/pause, volume, ...). With IE it works perfect. But with FF or Chrome the control panel is still displayed. ...
1
vote
1answer
25 views

HTML alternative if plugin is not available

What is the best practice for displaying an HTML alternative when a browser plug-in is not available? I'm embedding the plugin with an object tag like so: <object id="plugin0" ...
0
votes
1answer
231 views

Figuring out why Flash (Firefox plugin) uses 100% CPU on recursive NP_Initialize

Like many people before myself, I'm having problems with Flash bringing down an entire CPU core (specifically, one of the threads is always using up 100% CPU). Flash is probably running on more than ...
0
votes
1answer
74 views

Initializing NSS using Certificate DB

I am writing a NPAPI plugin, from which i need to access firefox certificate store. I have included the Gecko SDK and i want to initialize NSS with the default certificate DB. I am unable to find on ...
2
votes
2answers
120 views

Invoking NPAPI plugin functionality from Firefox extension

I have written a NPAPI plugin that implements all the logic required and now I am writing an extension that is expected to use the functionality provided in the plugin. This architecture provides me ...
0
votes
2answers
178 views

NPAPI plugin does not get loaded in Firefox

I'm writing an plugin and it gets into [INVALID] section in pluginreg.dat file on Windows. I think there is a problem in my npplugin.rc file. In npplugin.def file everything is correct: LIBRARY ...
1
vote
0answers
192 views

firefox extension show MFC dialog as embedded user interface (convert into plugin)?

I have firefox extension that i want to change into plugin. what I want to achieve is that I have a MFC dialog box that I want to show as embedded in browser in response to some event. Can I do that. ...
0
votes
1answer
153 views

NPAPI plugin not working in Firefox5.0 on Mac

I have a NPAPI plugin (built using firebreath) which works fine Safari and Google Chrome (both on Mac); But it fails to work on Firefox. When I looked at the Firefox plugins (about:plugin) it ...
1
vote
3answers
2k views

Google Web Toolkit Developer Plugin supported Firefox versions

How can I find which version of Firefox does the Google Web Toolkit Developer Plugin support ? I can't find it anywhere. As Firefox now has it small development cycle, it could be nice if Google ...
1
vote
1answer
237 views

Firefox form analyzer plugin

I would like to know if there is any firefox html form analyzer or for any other browser. Form analyzer is a tool that once you submit a POST form or any other type of form, will tell you the fields ...
1
vote
1answer
150 views

How can I make my firefox plug-in compatible with future releases

There's one feature in my web application which requires a small browser plug-in to work. 99% of the application is ASP.NET + javascript and we have no skills in writing browser plug-ins or any ...
1
vote
1answer
168 views

Logging in to a oracle database through firefox plugin

I want to know is it possible to log in to an existing oracle database through firefox plugin?
0
votes
1answer
113 views

CWindowImpl::Create() Failing in Windows 7

I have a Firefox plugin dll, which works fine in Windows XP but crashes in Windows 7. Issue is with CWindowImpl::Create() which fails to create a Window(window handle is NULL). Also, GetLastError() ...
0
votes
1answer
839 views

How do I get an NSView in a cocoa event model NPAPI plugin

I've followed the NetscapeCocoaPlugin example from the nightly Webkit build, and I'm able to build a NPAPI style plugin that uses the Cocoa Event Model. My question now, is how I can get the NSView ...
0
votes
1answer
477 views

jdk 1.6.0_23 does not run applet or console with firefox 3.6.15

I have the following Problem: I am using a newly installed Version of JDK 1.6.0_23 and Firefox 3.6 to run Applets which successfully execute on IE7. OS is WinXP One of the following happens ...
0
votes
1answer
101 views

A firefox plugin for driving UI of web apps

Does anyone know of a firefox plugin that can be used to drive the UI of a Web app?
0
votes
2answers
176 views

Do I need a Firefox plugin or an extension?

I need to read every url that loads into the navigation bar of firefox (either by type in or by clicking a link), pass them through a filter and decide if allow the url to open or not. I have some ...
0
votes
1answer
451 views

Firefox crash instantiating NPAPI plugin

I had the whole plugin working previously as a very simple implementation with lots of global and static variables, i've now converted it to an object based design so I can instantiate multiple ...
0
votes
1answer
449 views

sample mac Firefox Plugins?

I'm trying to re-write an old image-viewing plugin for the mac. The old version uses QuickDraw (I said it was old) and resources (really really old) and so it doesn't work in Firefox 3.6 (which is why ...
0
votes
2answers
132 views

Mac Plugins no longer support GetWindowFromPort?

I'm mantaining an ancient Firefox plugin. It uses GetWindowFromPort to get a WindowPtr object out of the NP_Port object which is the platform specific window data in the WidowPtr object. Now it always ...
4
votes
2answers
4k views

Firefox: Plugin vs extension?

I'm unclear on the difference between the functioning of a plugin vs an extension. For years, I've written a plain old NPAPI plugin. It lived in /Library/ Plug-ins on mac and somewhere similar on a ...
1
vote
2answers
788 views

Turning a browser plugin into an XPI

I have a very old (1992) browser plugin for a mac that works in several different browsers. However, since Firefox restricted its plugins to XPI files in Firefox 3.6, the plugin no longer works. I ...