I have problem loading Flash Lite plugin on N8

I have simple QWidget with QWebView inside, whole page (for example Youtube video) is loaded, but instead of video I see "Upgrade your flash player to newer version" (not literally translated)

In code (using Qt 4.7.3):

(_webView is Ui instance of QWebView)

ui->_webView->settings()->setAttribute(QWebSettings::PluginsEnabled, true);
ui->_webView->settings()->setAttribute(QWebSettings::AutoLoadImages, true);
ui->_webView->load(_url);

Request more details, if I haven't provided

Best regards
Marek Sebera

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted
+100

See divanov's post #9 here -- the "Product Specialist" says

Webkit doesn't support Flash Lite, it just normal Flash

Although that was in 2009, so I guess this could have changed. Are your libraries up-to-date?

This is an unresolved bug (in two parts) on the other hand this bug seems to imply that Flash Lite does have some support on Symbian.

link|improve this answer
feedback

you need to do that for global settings.

 QNetworkProxyFactory::setUseSystemConfiguration (true);
QWebSettings::globalSettings()->setAttribute(QWebSettings::PluginsEnabled, true);
QWebSettings::globalSettings()->setAttribute(QWebSettings::AutoLoadImages, true);

Then use webview to load the youtube video.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.