Home > Back-end >  Chromium NPAPI 42 open support
Chromium NPAPI 42 open support

Time:09-20

Download the
http://download.csdn.net/download/cyl19921030/9400290

But this version CefAddWebPluginPath (' D: \ PepperFlash \ pepflashplayer DLL); This command has been useless,
Older versions of documents on to say:

"
Before version 3.2357, directly add plugins directory to exe directory at the same level, and then will flash plugin DLL into the plugins directory is ok, but after 3.2357 version in the same way, but not normal load flash plugin, the reason is that the chromium is not the default support NPAPI after 42 (3.2357 using chromium is 43), if need to support, need through the command line setting "-- enable - NPAPI", after setting can support,

Command_line - & gt; AppendSwitch (" -- enable - npapi ");
"
Delphi how to run the command_line - & gt; AppendSwitch (" -- enable - npapi "); O

Pray god guide, open the Delphi

CodePudding user response:

Command_line - & gt; AppendSwitch (" -- enable - npapi ");
This is the CB code, if it is:
Command_line. AppendSwitch (' - the enable - npapi);

CodePudding user response:

reference 1st floor DelphiGuy response:
command_line - & gt; AppendSwitch (" -- enable - npapi ");
This is the CB code, if it is:
Command_line. AppendSwitch (' - the enable - npapi);


Eldest brother command_line this which things to apply

CodePudding user response:

Xilium cefglue is support the c # language library or framework, Delphi delphichromiumembedded should be used, I use chrome. Exe tried, startup parameters can modify the Settings, but will not save the Settings, other parameters test, pass this parameter are: ShellExecute (handle, the 'open', 'chrome. Exe,' -- enable - npapi, nil, SW_SHOWNORMAL); Reference ShellAPI, 'chrome. Exe path may need to change, if so can use the above for reference,

CodePudding user response:

reference santiaodahan reply: 3/f
xilium. Cefglue is to support the c # language library or framework, Delphi delphichromiumembedded should be used, I use chrome. Exe tried, startup parameters can modify the Settings, but will not save the Settings, other parameters test, pass this parameter are: ShellExecute (handle, the 'open', 'chrome. Exe', '-- enable - npapi, nil, SW_SHOWNORMAL); Reference ShellAPI, 'the path of the chrome. Exe may need to change, if can use the above for reference, so


Eldest brother can inside the program to get the '-- enable - npapi'

CodePudding user response:

reference 4 floor dapangzi88 response:
Quote: reference santiaodahan reply: 3/f

Xilium cefglue is support the c # language library or framework, Delphi delphichromiumembedded should be used, I use chrome. Exe tried, startup parameters can modify the Settings, but will not save the Settings, other parameters test, pass this parameter are: ShellExecute (handle, the 'open', 'chrome. Exe,' -- enable - npapi, nil, SW_SHOWNORMAL); Reference ShellAPI, 'the path of the chrome. Exe may need to change, if can use the above for reference, so

Eldest brother can inside the program to make this' - the enable - npapi

When using delphichromiumembedded writing is:
 
USES ceflib;
Procedure CustomBeforeCommandLineProc (const processType: ustring; Const commandLine: ICefCommandLine);
The begin
CommandLine. AppendSwitch (' - the enable - npapi);
end;
//where need to initialize the specified:
CefOnBeforeCommandLineProcessing:=CustomBeforeCommandLineProc;
  • Related