tuarua / WebViewANE

WebView Adobe Air Native Extension for macOS 10.10+, Windows Desktop, iOS 9.0+ and Android 19+. This ANE provides access to a more modern webview from AIR.
Apache License 2.0
183 stars 53 forks source link

My operating system is Win10, is webviewane support flash ? #164

Closed 1395881288 closed 6 years ago

1395881288 commented 6 years ago

My operating system is Win10, is webviewane support flash ? thanks.

1395881288 commented 6 years ago

1

tuarua commented 6 years ago

Yes. 1) You need to install the PPAPI version of Flash Player for Chromium. https://get.adobe.com/flashplayer/otherversions/ or 2) reference a local version of the plugin

settings.cef.commandLineArgs.push({
    key: "ppapi-flash-path",
    value: "C:\\path\\to\\pepflashplayer.dll"
});

settings.cef.commandLineArgs.push({
    key: "ppapi-flash-version",
    value: "30.0.0.000"
});
1395881288 commented 6 years ago

thanks ,You are a genius。