博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
cesharp 完美支持flash
阅读量:5144 次
发布时间:2019-06-13

本文共 996 字,大约阅读时间需要 3 分钟。

 

直接上代码:

 

cefSettings.CefCommandLineArgs.Add("enable-npapi", "1");            //cefSettings.CefCommandLineArgs.Add("enable-system-flash", "1");            //Flash            var flashFile = System.IO.Path.Combine(System.IO.Directory.GetCurrentDirectory(), "PepperFlash", "pepflashplayer.dll");            if (System.IO.File.Exists(flashFile))            {                 cefSettings.CefCommandLineArgs.Add("ppapi-out-of-process","1");                 //Load the pepper flash player that comes with Google Chrome - may be possible to load these values from the registry and query the dll for it's version info (Step 2 not strictly required it seems)                cefSettings.CefCommandLineArgs.Add("ppapi-flash-path", flashFile); //Load a specific pepper flash version (Step 1 of 2)                cefSettings.CefCommandLineArgs.Add("ppapi-flash-version", "99.0.0.999"); //Load a specific pepper flash version (Step 2 of 2)            }

  

 

转载于:https://www.cnblogs.com/tianciliangen/p/11102508.html

你可能感兴趣的文章
好玩的-记最近玩的几个经典ipad ios游戏
查看>>
tmux的简单快捷键
查看>>
Vue_(组件通讯)子组件向父组件传值
查看>>
[Serializable]的应用--注册码的生成,加密和验证
查看>>
Android 官方新手指导教程
查看>>
安装 Express
查看>>
Weka中数据挖掘与机器学习系列之基本概念(三)
查看>>
leetcode-Sort List
查看>>
中文词频统计
查看>>
Postman-----如何导入和导出
查看>>
【Linux】ping命令详解
查看>>
8、RDD持久化
查看>>
第二次团队冲刺--2
查看>>
pair的例子
查看>>
uva 387 A Puzzling Problem (回溯)
查看>>
Oracle中包的创建
查看>>
关于PHP会话:session和cookie
查看>>
利用IP地址查询接口来查询IP归属地
查看>>
Hbuild在线云ios打包失败,提示BuildConfigure Failed 31013 App Store 图标 未找到 解决方法...
查看>>
找到树中指定id的所有父节点
查看>>