I am trying to load a page designed to be loaded with unity 3d plugin with the below code.
	
	- QWebSettings::globalSettings()->setAttribute(QWebSettings::PluginsEnabled, true); 
-     QWebView *webView = new QWebView(); 
-     webView->page()->settings()->setAttribute(QWebSettings::PluginsEnabled, true); 
-   
-     webView -- >load (QUrl("file:///Users/user/Downloads/Empty/Empty.html"))- ; 
-     webView->show(); 
        QWebSettings::globalSettings()->setAttribute(QWebSettings::PluginsEnabled, true);
    QWebView *webView = new QWebView();
    webView->page()->settings()->setAttribute(QWebSettings::PluginsEnabled, true);
    webView->load(QUrl("file:///Users/user/Downloads/Empty/Empty.html"));
    webView->show();
To copy to clipboard, switch view to plain text mode 
  
unity3d.jpg
The page is loaded as blank. 
Getting the below errors
Cannot find executable for CFBundle 0x7f97f9f18d40 </Library/Internet Plug-Ins/Unused> (not loaded)
But unity web player.plugin is found in the  /Library/Internet Plug-Ins
Kindly let me know where I am going wrong
				
			
Bookmarks