Hi, On 14/04/2011, at 4:09 PM, ext Chen, Zhenqiang wrote:
> Hi all, > > I check out the "qml-team/qtquick2" branch from > http://qt.gitorious.org/+qt-developers/qt/staging/ > > And build it with > ./configure > make > make install > cp -r /usr/local/Trolltech/Qt-4.8.0/* /usr/local/ > > [I have Qt 4.7.2 installed at /usr/] > > Then I try an example to show an image in Flickable GridView with CMD: > > qmlviewer -opengl -fullscreen test.qml (import QtQuick 1.1) Your QML files must "import QtQuick 2.0". To maintain backwards compatibility, the entire non-scenegraph QtQuick 1 remains. For the time being, you must also use the separate "qmlscene" tool instead of "qmlviewer". I expect we'll merge to two eventually so you can just use qmlviewer for both QtQuick 1 and 2. Cheers, Aaron _______________________________________________ Qt-qml mailing list [email protected] http://lists.qt.nokia.com/mailman/listinfo/qt-qml
