Mzying2001

Results 33 comments of Mzying2001

4399上的那些Unity游戏用到的插件是NPAPI插件,CEF不支持这种插件,所以应该是不能在这个浏览器上玩这类游戏了

如果只是网页无法加载的话看看会不会是被防火墙或者其他杀毒软件给拦截了?

CefSharp没有提供相应的接口,这个功能我暂时没有较好的实现的思路...

v1.0.7版本修复了配置文件导致打不开的bug,用新版本试试 https://github.com/Mzying2001/CefFlashBrowser/releases/latest

v1.0.7版本修复了配置文件导致打不开的bug,用新版本试试 https://github.com/Mzying2001/CefFlashBrowser/releases/latest

> > v1.0.7版本修复了配置文件导致打不开的bug,用新版本试试 https://github.com/Mzying2001/CefFlashBrowser/releases/latest > > System.BadImageFormatException: 未能加载文件或程序集“CefSharp.Core, Version=79.1.360.0, Culture=neutral, PublicKeyToken=40c4b6fc221f4138”或它的某一个依赖项。 不是有效的 Win32 应用程序。 (异常来自 HRESULT:0x800700C1) 文件名:“CefSharp.Core, Version=79.1.360.0, Culture=neutral, PublicKeyToken=40c4b6fc221f4138” ---> System.BadImageFormatException: 未能加载文件或程序集“CefSharp.Core.dll”或它的某一个依赖项。 不是有效的 Win32 应用程序。 (异常来自 HRESULT:0x800700C1) 文件名:“CefSharp.Core.dll” 在...

> 我在上周1.06版本突然不能使用的情况下,更新了1.07版本,也出现了上边的错误 System.BadImageFormatException: 未能加载文件或程序集“CefSharp.Core, Version=79.1.360.0, Culture=neutral, PublicKeyToken=40c4b6fc221f4138”或它的某一个依赖项。 不是有效的 Win32 应用程序。 (异常来自 HRESULT:0x800700C1) 文件名:“CefSharp.Core, Version=79.1.360.0, Culture=neutral, PublicKeyToken=40c4b6fc221f4138” ---> System.BadImageFormatException: 未能加载文件或程序集“CefSharp.Core.dll”或它的某一个依赖项。 不是有效的 Win32 应用程序。 (异常来自 HRESULT:0x800700C1) 文件名:“CefSharp.Core.dll” 在 System.Reflection.RuntimeAssembly.nLoadFile(String path, Evidence evidence)...

> > > 我在上周1.06版本突然不能使用的情况下,更新了1.07版本,也出现了上边的错误 System.BadImageFormatException: 未能加载文件或程序集“CefSharp.Core, Version=79.1.360.0, Culture=neutral, PublicKeyToken=40c4b6fc221f4138”或它的某一个依赖项。 不是有效的 Win32 应用程序。 (异常来自 HRESULT:0x800700C1) 文件名:“CefSharp.Core, Version=79.1.360.0, Culture=neutral, PublicKeyToken=40c4b6fc221f4138” ---> System.BadImageFormatException: 未能加载文件或程序集“CefSharp.Core.dll”或它的某一个依赖项。 不是有效的 Win32 应用程序。 (异常来自 HRESULT:0x800700C1) 文件名:“CefSharp.Core.dll” 在 System.Reflection.RuntimeAssembly.nLoadFile(String path,...

> System.IO.FileNotFoundException: 未能加载文件或程序集“CefSharp.Core, Version=84.4.10.0, Culture=neutral, PublicKeyToken=40c4b6fc221f4138”或它的某一个依赖项。找不到指定的模块。 文件名:“CefSharp.Core, Version=84.4.10.0, Culture=neutral, PublicKeyToken=40c4b6fc221f4138” ---> System.IO.FileNotFoundException: 未能加载文件或程序集“CefSharp.Core.dll”或它的某一个依赖项。找不到指定的模块。 文件名:“CefSharp.Core.dll” 在 System.Reflection.RuntimeAssembly._nLoad(AssemblyName fileName, String codeBase, Evidence assemblySecurity, RuntimeAssembly locationHint, StackCrawlMark& stackMark, IntPtr pPrivHostBinder, Boolean throwOnFileNotFound, Boolean...

这个参数是音视频的自动播放策略,添加 `settings.CefCommandLineArgs["autoplay-policy"] = "no-user-gesture-required";` 允许网页的音视频自动播放,但 Flash 插件的内容不会受这个影响。 要让 Flash 内容自动播放的话我用的方法是在 `IsBrowserInitializedChanged` 事件中将 `profile.default_content_setting_values.plugins` 设为1,这样 Flash 内容就可以自动播放了,详见: https://github.com/Mzying2001/CefFlashBrowser/blob/master/CefFlashBrowser.FlashBrowser/ChromiumFlashBrowserBase.cs#L17