How does QWebKit play a flash?
-
Do you work on XCode?
If so, follow the step: "Targets" -> "(Your Application)" -> "Get Info" -> go to "Build" table -> go to "Architectures" -> go to "Architectures" -> Select "32-bit Itel".
That's all. Hope that it can help you.
-
I resolved this problem. The solution just is to invoke a 32bit process(in fact, it is a application) to play a flash while a 64bit application executes. So far, everything is OK. By the way, I don't use WebKitPluginHost.app. :-)
Generally, I expect that Adobe can release early 64bit flash plug-in. After all, it is a real way.
-
Anyway, thank Rory and Tomma.
-
I had a similar problem recently,os:embedded linux
firefox play is ok , but Qtwebkit is not play@
QWebSettings::globalSettings()->setAttribute(QWebSettings::PluginsEnabled, true);
QWebSettings::globalSettings()->setAttribute(QWebSettings::JavascriptEnabled, true);
QWebSettings::globalSettings()->setAttribute(QWebSettings::AutoLoadImages, true);
view = new QWebView(this);
view->load(url);
@libflashplayer.so is save /root/.mozilla/plugins
[EDIT: code formatting, please wrap in @-tags, Volker]