Re: NPAPI Z-order
[email protected] Mon, 22 Apr 2013 07:09:12 -0700 (PDT)
| Newsgroups | gmane.comp.mozilla.devel.plugins |
|---|---|
| Message-ID | <[email protected]> |
On Monday, April 22, 2013 3:58:28 PM UTC+2, Benjamin Smedberg wrote: > On 4/22/2013 9:33 AM, [email protected] wrote: > > > I have tried to make it windowless by having the following in my NPP_GetValue(): > > > > > > .... > > > case NPPVpluginWindowBool: > > > *((NPBool*)value) = false; > > > break; > > You need to use NPN_SetValue for this. See > > http://mxr.mozilla.org/mozilla-central/source/dom/plugins/test/testplugin/nptest.cpp#974 > > for sample code. > > > > Note that "NPNV" are variables used with NPN_Get/Set (NPNV means NP > > Navigator Variable). > > "NPPV" are variables used with NPP_Get/Set (NPPV means NP Plugin Variable). > > > > --BDS Oh, I see what you mean. Will just try that.