Re: NPAPI Z-order

Benjamin Smedberg <[email protected]> Mon, 22 Apr 2013 09:58:28 -0400
Newsgroups gmane.comp.mozilla.devel.plugins
Message-ID <[email protected]>
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