Is it possible to have a Timer without having a visual item that brings in
the animation timer ? Think
QtObject {
Component.onCompleted: console.log("hello world");
Timer {
interval: 500; running: true; repeat: true;
onTriggered: console.log("tick");
}
}
This gives somewhat cryptic Component is not ready error, but does work if I
replace QtObject with Item. Now, you will be asking well, why don't you just
use Item, and the answer is that it feels a bit weird - I'm experimenting
with GUIless QML (think custom structured QtObject creation, textual UIs,
etc).
Best regards,
Attila
_______________________________________________
Qt-qml mailing list
[email protected]
http://lists.qt.nokia.com/mailman/listinfo/qt-qml