What's wrong with qmlscene?
Solved
QML and Qt Quick
-
I used qmlscene to parse QML samples but got some unexpected results:
C:\Qt5\5.11.3\mingw53_32\bin>qmlscene.exe d:\tmp\Qt\hello.qml
qt.qpa.gl: Unable to disable rotation.
qmlscene: 'import QtQuick 1.0' is no longer supported.
Use qmlviewer to load file 'D:/tmp/Qt/hello.qml'.Each sample QML contains 'import QtQuick 1.0'. What can I do for it? Just remove it.
What does "qt.qpa.gl: Unable to disable rotation." mean?
Why does qmlscence suggest me to use qmlviewer? Where can I find qmlviewer? -
qmlscene does not support 1.0. Why are you trying to use QtQuick 1.0 ?
-
I am new Qt learner and tried to copy samples from Qt Tutorial pages. Each sample contains QtQuick 1.0. So, what can I do to make use of such samples to learn Qt/QML?