Hello,
I have this code working on Linux :
import QtQuick 2.0
import QtWebKit 3.0

Rectangle{
    id: rootangel
    color:"black"
    width: 1280  //parent.width
    height: 720 //parent.height
//anchors.fill: parent

WebView {
    url: "http://www.hulu.com";
    width: rootangel.width
    height: rootangel.height
    scale: 1
    smooth: false
}
}

But on 5.0.1 Qt build for Mingw , it keeps showing: " module "QtWebKit" is
not installed"
But QtWebKit works fine on QWidgets, and another components like QtDesktop
works nice.
The QtWebKit folder is on qml folder among other components.

There anything that I should be aware ? I'm doing anything wrong ?

Thanks !
Best regards,
Bruno Cabral

_______________________________________________
Interest mailing list
Interest@qt-project.org
http://lists.qt-project.org/mailman/listinfo/interest

Reply via email to