How to make QtWebKit see Flash?

What is the easiest way to make QWebView recognize and load Flash correctly on a web page?

+4
source share
2 answers

It seems that this can be achieved in only two lines (provided that the flash drive is installed on the target system, of course):

 QWebSettings *settings = QWebSettings::globalSettings(); settings->setAttribute (QWebSettings::PluginsEnabled, true); 
+5
source

If someone else is viewing this page to get the plugin to work ... you need to first install the Flash plugin from Adobe in the appropriate directory (see the QT website for this) and make sure it is correct (32 / 64bit) for your application (s) are not necessarily your system ...

Then see above answers if code programmer ...

+2
source

Source: https://habr.com/ru/post/1388964/


All Articles