Is there a way to load a flash app within QT for maemo? Webkit ? QAxWidget? Browser?
Thank you,
Is there a way to load a flash app within QT for maemo? Webkit ? QAxWidget? Browser?
Thank you,
WebKit supports loading Gecko plugins and there is adobe-flashplayer package containing flash plugin used by MicorB.
Check out this sample application
Code:#include <QtGui> #include <QtWebKit> int main(int argc, char * argv[]) { QApplication app(argc, argv); QWebView view; view.settings()->setAttribute(QWebSettings::PluginsEnabled, true); view.load(QUrl("http://www.youtube.com/watch?v=KMU0tzLwhbE")); view.show(); return app.exec(); }
UNBELIEVABLE!!! Tks man, that did the trick so much more easier than I expected!!!
By the way, nice youtuve video ;-)
No, you don't need to install any extra package. Qt Webkit makes use of Mozzilla plugins, and flash is shipped with the device.
Last edited by gnuton; 2010-11-21 at 22:17.
I just tried visiting my target page using the web browser on my phone and it works. But when I try visiting it using QWebview in my application I just get a symbol that looks like a lego box with a quesiton mark on it. Any suggesstion?
I looked at another nokia forumn post by symbianyucca and here is what he says,
"You can not use Flash-plug-in in any other app than those that have Nokia vendor UID with their process, thus it is only usable in normal Browser (propably not available in any 3rd party browser) as well as in WRT Widget applications."
link to thread - http://discussion.forum.nokia.com/fo...sh-lite-plugin
For the guys this is working for, did u already get your app approved and signed by nokia?