Hey guys,
I'm doing a few tests with QWebViews, and eventually I'm gonna need to display websites with either flash or html5.
In the docs, it says to set PluginsEnabled to True. What am I doing wrong here?
the window loads the page, but it eventually complains about flash
#==============================
from PySide import QtGui, QtCore
from PySide.QtWebKit import QWebView, QWebSettings
url = QtCore.QUrl( '
http://www.grooveshark.com' )
webView = QWebView()
webView.settings().setAttribute( QWebSettings.PluginsEnabled, True )
webView.load( url )
webView.show()
#=========================
Thanks,
Kev