[SOLVED] Embedding flash player into a QtWebKit application.
-
Hi,
you can not distribute Adobe plugins binaries along with your application.
In the installation pacakge of your project ask user to download the latest plugin from the adobe website.
It is against the copyright to distribute adobe dll's with third party app. -
[quote author="Ashish Mittal" date="1328797569"]Hi,
you can not distribute Adobe plugins binaries along with your application.
In the installation pacakge of your project ask user to download the latest plugin from the adobe website.
It is against the copyright to distribute adobe dll's with third party app.
[/quote]Thank you for your reply.
I still would like to know how to do the procedure indicated by Volker.
[quote author="Volker" date="1325442522"]According to the sources in 4.8[1] the paths set in the environment variable QTWEBKIT_PLUGIN_PATH are also search for plugins. You might give that a try. Be aware to set the environment before instantiating any webkit classes.
fn1. "src/3rdparty/webkit/Source/WebCore/plugins/PluginDatabase.cpp":http://qt.gitorious.org/qt/qt/blobs/4.8/src/3rdparty/webkit/Source/WebCore/plugins/PluginDatabase.cpp#line419[/quote]
-
Thanks!
The QnQ forums feature is in the works. It will come some time soon. You can have a look at the new features in the "QnA Testing Area":/forums/viewforum/46/ - feel free to play around there, it's there just for testing purpose and we're supposed to "take it apart" ("MariusG":/member/2) :-)
-
I've found solution, that works for me in Qt 4.8.
I'm creating a directory named
plugins
in the same directory that the my app executable and Qt libraries located in, and copyNPSWF32.dll
inside it. After that application starts to recognize flash content.