我们最近将其中一个项目中的 Cefsharp 从 43.0.0.0 升级到了 65.0.0.0 。升级闪存不再加载到浏览器中后,它会给出错误
“ Adobe Flash Player已过时”
。我们已经在项目中嵌入了 pepperflash 25.0.0.171 的特定版本。下面的代码段
settings.CefCommandLineArgs.Remove("enable-system-flash");
string PpapiFlashVersion = "25.0.0.171";
var pepFlashPlayerPath = Path.Combine(AppDomain.CurrentDomain.SetupInformation.ApplicationBase,"pepflashplayer");
settings.CefCommandLineArgs.Add("ppapi-flash-path", pepFlashPlayerPath);
settings.CefCommandLineArgs.Add("ppapi-flash-version", PpapiFlashVersion);
收到错误后,我想我将尝试使用最新版本的胡椒粉闪光灯(31.0.0.108)。但是当我这样做时,我又遇到了另一个错误
“右键单击以运行Adobe Flash Player”
右键单击也不起作用。
任何帮助将不胜感激。谢谢