PDA

View Full Version : QtQuick 2.0 doesn't work on OSX Mountain Lion 10.8.2



olbert123
27th December 2012, 17:14
Hi,

I've downloaded the new QT 5.0 package for mac and installed it as recommend at ~/Qt5.0.0
With the QtCreator I made a new QtQuick 2.0 preset project, but after I switch to the 'Design'-tab the UI doesn't appear, but an error message: "Unsupported QtQuick version (0:0)".

In the QML File when I change "import QtQuick 2.0" to "import QtQuick 1.1" it works, but not with 2.0. Some happens when I use the QML-Viewer.
Tested it on another mac with MountainLion 10.8.2 too and got the same problem. An older version of Qt is not installed.

Any idea what's wrong?

jbache
27th December 2012, 20:46
The QML Designer for Qt Quick 2.0 is not supported by Qt Creator yet so it will currently not work on any platform. Note that it is also possible that some parts of the QML Designer will be limited to commercial Qt customers in the future.

olbert123
28th December 2012, 16:17
But why doesn't it work with the QMLViewer either?

wysota
28th December 2012, 16:59
But why doesn't it work with the QMLViewer either?

Because QMLViewer is for QtQuick 1. For QtQuick 2 use QMLScene.

olbert123
28th December 2012, 17:29
Oh, thanks!