3

I use this very simple python script Problem loading a specific website through Qt Webkit to display a web page. It works well, but it doesn't detect my installed libflashplayer.so on linux x86_64 (that displays http://www.adobe.com/go/getflash/ URL) . What can I do to be able to run flash web pages ? (flash works well with all my classics browsers)

Regards, sputnick

Community
  • 1
  • 1
Gilles Quénot
  • 173,512
  • 41
  • 224
  • 223

1 Answers1

2

You need to enable the plugins explicitly with:

QWebSettings.globalSettings().setAttribute(QWebSettings.PluginsEnabled, True)
alexisdm
  • 29,448
  • 6
  • 64
  • 99