I've followed these steps to initialize the plugin, but if I try to relocate the dll to another location besides its default install (e.g. C:\Windows\SysWOW64\Macromed\Flash), the plugin fails to load. It seems that CEF might be ignoring the new location specified in the settings. Here's how I initialize:
var settings = new CefSharp.Settings();
settings.AddPluginPath(@"./NPSWF32.dll");
CEF.Initialize(settings);
BrowserSettings bSettings = new BrowserSettings();
bSettings.PluginsDisabled = false;
webView = new WebView("", bSettings);
Any thoughts?